Connect your agent

Connect any MCP-capable agent to PackageMaze with one URL. Once connected, the agent works against the same Feeds, Tokens, and policies your team uses — nothing more.

The endpoint

Every MCP-capable agent connects to the same streamable-HTTP endpoint:

https://api.packagemaze.com/mcp

Connect your client

Claude Code

claude mcp add --transport http packagemaze https://api.packagemaze.com/mcp

Then run /mcp and authenticate.

claude.ai / Claude Desktop

Open Settings → Connectors → Add custom connector. There is no command or config file — paste the endpoint:

https://api.packagemaze.com/mcp

Approve PackageMaze on the consent screen that opens. Traffic originates from Anthropic's cloud.

Codex

codex mcp add packagemaze --url https://api.packagemaze.com/mcp --oauth-client-id packagemaze-codex
codex mcp login packagemaze

Cursor

.cursor/mcp.json
{
  "mcpServers": {
    "packagemaze": {
      "url": "https://api.packagemaze.com/mcp"
    }
  }
}

Or add it in one click: Add to Cursor.

VS Code

.vscode/mcp.json
{
  "servers": {
    "packagemaze": {
      "type": "http",
      "url": "https://api.packagemaze.com/mcp"
    }
  }
}

Or install it from the browser: Install in VS Code.

Other clients

Any streamable-HTTP MCP client can use the endpoint directly. For stdio-only clients, bridge it with the mcp-remote shim:

npx -y mcp-remote https://api.packagemaze.com/mcp

What connecting grants

Connecting opens a consent screen that scopes the connection to one Organization and the Feeds you choose. Authorizations expire after three months, you can revoke one at any time from the Agents page, and connected agents don't count as seats.