Model Context Protocol server
https://mcp.startuped.ai/sse
REST API docs →
This server requires a Bearer token. The token is set in Cloudflare Workers via wrangler secret put MCP_SERVER_AUTH_TOKEN and is not shown here.
In the configs below, replace <YOUR_TOKEN> with that same value. Do not commit the token to git.
Config file: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
{
"mcpServers": {
"startuped-ai": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.startuped.ai/sse", "--header", "Authorization:${AUTH_HEADER}"],
"env": {
"AUTH_HEADER": "Bearer <YOUR_TOKEN>"
}
}
}
}
Config file: ~/.cursor/mcp.json or .cursor/mcp.json
{
"mcpServers": {
"startuped-ai": {
"url": "https://mcp.startuped.ai/sse",
"headers": {
"Authorization": "Bearer <YOUR_TOKEN>"
}
}
}
}
The MCP token above only connects you to this server. To call tools (create lead, search leads, etc.), you need your startuped.ai API key.
Get it from startuped.ai/api-keys (or the app dashboard), then pass it as the apiKey argument in every tool call. You can tell Claude to use your key for startuped.ai tools, or pass it when asked.
Each tool calls the startuped.ai REST API and requires apiKey. Full reference: startuped.ai/api/docs