MCP Server
Tools Reference
All available MCP tools, organized by category. Select a category to see the full tool documentation.
Campaigns
Create, train, rename, and archive campaigns.
Search
Run a campaign to find and score prospects.
Prospects
List, view, and update prospect status.
Contact Enrichment
Find verified emails and phone numbers.
Research Reports
Generate deep-dive prospect research reports.
Account
Check your credit balance.
Tasks
Poll the status of async background operations.
Programmatic Access
The MCP server exposes its tool definitions as a JSON endpoint — no authentication required. You can query it directly to get the current list of tools, their descriptions, and input schemas.
GET https://typfhw4u25fvyhxeejehmgpmia0zvici.lambda-url.us-east-1.on.aws/docsThe response is a JSON object with a tools array and a categories array. Each tool entry includes:
{
"tools": [
{
"name": "list_campaigns",
"description": "List all your campaigns with status and profile counts.",
"category": "Campaigns",
"async": false,
"parameters": {
"type": "object",
"properties": {},
"required": []
}
}
],
"categories": [
{
"label": "Campaigns",
"slug": "campaigns",
"description": "Create, train, rename, and archive campaigns."
}
]
}This page is itself a live reflection of that endpoint — it re-fetches every 60 seconds, so new tools and categories appear automatically without any manual documentation update.