Selda MCP server
Use Selda from external AI tools (Claude, ChatGPT, Cursor) via the Model Context Protocol. The MCP server lets an AI assistant read and act on your Selda workspace: list projects and leads, run the pipeline, upload prospect material into a real campaign, draft and review messages, and check credits, all scoped to your organization.
Prefer to hand your assistant a ready-made skill? Copy the whole Selda skill in one click, then connect the MCP server below.
Eligibility
Every plan can connect, in test mode. Creating a key on a free workspace mints a test key: the full product in test mode, MCP included, and nothing sends for real. Real sends from your connected inboxes require a paid plan (Pro and up). Check or upgrade in Settings → Billing in the app.
Connect, the easy way (Claude.ai, ChatGPT, Cursor)
If your tool has a “Connect an app” or “Add connector” option, just give it the address:
https://mcp.selda.ai/api/mcpYou’ll be sent to Selda to log in and approve which workspace it can reach, the same account you already use in the app. No key to create, copy, or paste. Access is org-scoped: your assistant can only reach the workspace you approved.
Connect. Claude Code or a static key
Some clients (Claude Code, scripts, CI) need a fixed key instead of an interactive login. The app hands you the finished command: open Settings → MCP, create a key, and copy the one line it shows.
claude mcp add --transport http selda https://mcp.selda.ai/api/mcp \
--header "Authorization: Bearer PASTE_YOUR_SELDA_KEY"The key travels in a header, not in the URL, so it stays out of shell and proxy history. The same screen shows whether Selda has actually received a call on that key yet, it only says connected once one has arrived.
Any other MCP client
Paste this into a client that takes a JSON config, with the key from the same screen:
{
"mcpServers": {
"selda": {
"type": "http",
"url": "https://mcp.selda.ai/api/mcp",
"headers": { "Authorization": "Bearer PASTE_YOUR_SELDA_KEY" }
}
}
}What you can do with it
Once connected, these prompts produce real work in your Selda workspace:
- “List my Selda projects.”, see your workspaces and get the
projectIdeverything else needs. - “Look up Acme Inc and tell me who to reach in marketing.”, enriched company info and matched decision-makers, no campaign started.
- “Create a campaign from this folder of prospect research, upload the files, find decision-makers, draft messages.”, one file per company (PDF, Markdown, JSON); lands as a real, reviewable campaign in the app, exactly like dragging the folder in yourself.
- “Find 20 SaaS founders in Finland and add them as leads to my main project.”, runs the discovery pipeline and stores drafted outreach.
- “Check the status of that campaign run.”, phase, companies found, contacts resolved, messages drafted.
- “Draft a first-touch message for this lead based on their website.”, a personalized draft grounded in real research.
- “Check my credits.”, remaining balance and plan.
- “Show campaign stats for my Q3 campaign.”, sent, replies, meetings, the numbers that matter.
- “Add these companies from this page as leads.”, paste a URL or list; known contacts get added directly.
Nothing sends automatically. Every tool that touches a campaign produces drafts you approve inside the Selda app, there is no MCP tool that sends a message.
→ Longer patterns people actually build: What people build with it → Full tool list and details: MCP server reference.