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
-
Open Claude Desktop → Settings → Developer → Edit Config. This opens
claude_desktop_config.json. -
Add (or merge into) the
mcpServersblock:{ "mcpServers": { "proagentme": { "command": "npx", "args": ["-y", "@proagentme/mcp"], "env": { "PROAGENTME_API_KEY": "pam_..." } } } } -
Save. Quit and restart Claude Desktop (the config is only read at startup).
-
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.