Clients

Client setup

Connect Cursor, Claude, ChatGPT, or a stdio-only client to the hosted Printonic MCP server.

Cursor

One-click install, then replace YOUR_PSA_LIVE_KEY with a key from Agent Access. Or add Printonic to .cursor/mcp.json manually:

Add to Cursor
{
  "mcpServers": {
    "printonic": {
      "url": "https://platform.printonic.com/mcp",
      "headers": {
        "Authorization": "Bearer psa_live_your_key_here"
      }
    }
  }
}

Claude Desktop and Claude Code

Claude Code uses the same mcp.json as Cursor. Claude Desktop: add a custom / remote MCP server with URL https://platform.printonic.com/mcp and an Authorization Bearer header.

ChatGPT

Add a remote MCP connector with URL https://platform.printonic.com/mcp and header Authorization: Bearer psa_live_…. ChatGPT must be allowed to use custom MCP connectors in your workspace.

Other / stdio-only clients

Bridge to the hosted server with mcp-remote:

npx -y mcp-remote https://platform.printonic.com/mcp \
  --header "Authorization: Bearer psa_live_your_key_here"