MCP Server

The SynapseX MCP Gateway is a Model Context Protocol server that exposes all platform capabilities to any MCP-compatible client.

What is MCP?

Model Context Protocol (MCP) is an open protocol that allows language models (LLMs) to interact with external tools and services in a standardized way. Created by Anthropic, it is supported by Claude, Cursor, VS Code (via Continue), and others.

What SynapseX MCP Exposes

CategoryTools
Agentsspawn_agent, get_agent_status, list_agents
Jobssubmit_job, list_jobs, cancel_job
Manager Toolsgmail_*, slack_*, github_*, notion_*, calendar_*

Connect to Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
  "mcpServers": {
    "synapsex": {
      "command": "synapsex",
      "args": ["mcp", "serve"],
      "env": {
        "SYNAPSEX_API_KEY": "sx-your-key-here"
      }
    }
  }
}

Connect via HTTP (Remote MCP)

# Endpoint
https://mcp.synapsex.ai/mcp

# Auth header
Authorization: Bearer sx-your-key-here