MCP · SSE · v13

Startuped.AI MCP Server

Deploy check: startuped-mcp · http-first-streamable · 2026-08-07

Connect Claude Desktop or Cursor with your platform API key (sk_…) as the Bearer token. Tools use that identity automatically — no per-tool apiKey argument.

REST API docs → Get API key

Endpoint

https://mcp.startuped.ai/sse

Authentication (two options)

  1. Recommended (end users): Authorization: Bearer sk_… — your platform API key from api-keys.
  2. Admin / internal: Authorization: Bearer <MCP_SERVER_AUTH_TOKEN> — shared Worker secret. For this path, pass apiKey on tool calls when invoking tools programmatically (schemas no longer list it; optional override).

Claude Desktop

{
  "mcpServers": {
    "startuped-ai": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.startuped.ai/sse", "--transport", "http-first", "--header", "Authorization:${AUTH_HEADER}"],
      "env": {
        "AUTH_HEADER": "Bearer sk_your_api_key_here"
      }
    }
  }
}

Cursor

{
  "mcpServers": {
    "startuped-ai": {
      "url": "https://mcp.startuped.ai/sse",
      "headers": {
        "Authorization": "Bearer sk_your_api_key_here"
      }
    }
  }
}

Tools

Each tool calls the startuped.ai REST API using the session key from your Bearer header. Full reference: startuped.ai/docs