ProAgent MeDocs
Integrations

Claude Desktop

Add ProAgent Me to Claude's desktop app via the @proagentme/mcp stdio wrapper.

Same stdio wrapper as Claude Code, configured via Claude Desktop's Developer settings panel.

Setup

  1. Get an API key.

  2. Open Claude DesktopSettingsDeveloperEdit Config. This opens claude_desktop_config.json.

  3. Add (or merge into) the mcpServers block:

    {
      "mcpServers": {
        "proagentme": {
          "command": "npx",
          "args": ["-y", "@proagentme/mcp"],
          "env": {
            "PROAGENTME_API_KEY": "pam_..."
          }
        }
      }
    }
  4. Save. Quit and restart Claude Desktop (the config is only read at startup).

  5. Start a new chat. The connector icon at the bottom-left of the composer shows proagentme with 5 tools.

Using it

Try:

"Using ProAgent Me, list the agents I have access to."

Claude calls list_my_agents and displays results. Ask follow-ups naming specific agents, and it will route through ask_agent.

Pin a default agent

Same as Claude Code — add PROAGENTME_DEFAULT_AGENT to the env block:

"env": {
  "PROAGENTME_API_KEY": "pam_...",
  "PROAGENTME_DEFAULT_AGENT": "agent-uuid-here"
}

Every ask call routes to that agent transparently.

On this page