Quickstart

Get SpacialMCP running in your AI client in under two minutes.

1

Get your API key

Sign up for a free account. Then go to your dashboard and click Create new key. Copy the key — you won't see it again.

2

Add the config snippet

Add this to your MCP client config. Replace YOUR_SPACIALMIND_API_KEY with your actual key.

{
  "mcpServers": {
    "spacialmind": {
      "url": "https://mcp.spacialmind.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SPACIALMIND_API_KEY"
      }
    }
  }
}

Works with Cursor, Claude Code, Claude Desktop, Codex CLI, Windsurf, and any MCP-aware client. Use the install wizard for client-specific paths.

3

Restart your client

After saving the config file, restart your AI client so it picks up the new MCP server. SpacialMind tools will appear in your tool list automatically.

4

Verify the connection

Ask your AI client to use the whoami tool. You should see your org, user ID, and rate limit info:

> Use the whoami tool

{
  "org": "my-org",
  "userId": "usr_01J...",
  "scopes": ["read", "write"],
  "rateLimit": { "limit": 60, "remaining": 58 }
}
5

Create your first project

Ask your AI client to create a project:

> Create a project called "my-app"

{
  "id": "prj_01J...",
  "name": "my-app",
  "createdAt": "2026-05-16T..."
}

Available tools

SpacialMCP exposes tools for managing projects, tasks, agents, missions, and knowledge. See the full list on the SpacialMCP product page.