MCP Configuration

You can integrate the StarterKit into any editor or AI assistant that supports the Model Context Protocol (MCP).

Example MCP Configurations

The following examples show how to configure the MCP server for different tools. You can use these snippets to set up the MCP server in your editor or AI assistant.

Claude Code

claude mcp add --transport sse saas_starter_kit https://saas-kit-server.andreas-8d0.workers.dev/sse --header "Authorization: Bearer your-access-key"

Note: If you use Claude Code, you can run the command in your terminal to add the MCP server.

Cursor / Windsurf

{
  "mcpServers": {
    "saas_starter_kit": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://saas-kit-server.andreas-8d0.workers.dev/sse",
        "--header",
        "Authorization: Bearer your-access-key"
      ]
    }
  }
}