startuped.ai

Model Context Protocol server

Server online
SSE endpoint
https://mcp.startuped.ai/sse REST API docs →
Authentication

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.

Claude Desktop

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>"
      }
    }
  }
}
Cursor

Config file: ~/.cursor/mcp.json or .cursor/mcp.json

{
  "mcpServers": {
    "startuped-ai": {
      "url": "https://mcp.startuped.ai/sse",
      "headers": {
        "Authorization": "Bearer <YOUR_TOKEN>"
      }
    }
  }
}
Using the tools

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.

MCP tools (map to REST)

Each tool calls the startuped.ai REST API and requires apiKey. Full reference: startuped.ai/api/docs

get_api_key_info get_user_data create_post search_posts create_lead get_lead search_leads list_leads authenticate_user create_signal create_request post_twitter