Claude Code
Add StackResolve to Claude Code as an MCP server.
Claude Code talks to StackResolve over the hosted MCP server. One command adds every tool.
#Add the server
Shell
claude mcp add --transport http stackresolve https://mcp.stackresolve.dev/mcpAdd --scope user to make it available in every project, or --scope project to write it
into the repo's .mcp.json so your team shares it:
Shell
claude mcp add --transport http --scope user stackresolve https://mcp.stackresolve.dev/mcp#Set your key
The hosted MCP requires a valid key in the x-api-key header. Pass it as a header when you
add the server:
Shell
claude mcp add --transport http stackresolve https://mcp.stackresolve.dev/mcp \
--header "x-api-key: $STACKRESOLVE_API_KEY"Get a free key at app.stackresolve.dev. See Authentication.
#Verify
Shell
claude mcp listYou should see stackresolve connected. Inside Claude Code, run /mcp to inspect the tools.
#Use it
Ask Claude in plain language and it calls the right tool:
- "Find tools for sending transactional email from an agent." (
find_tools_for_task) - "Audit stripe.com for agent-readiness." (
audit) - "Research resend.com and tell me if it supports batch sending." (
research_company) - "Compare stripe and paddle." (
compare_products)
Tip
One server serves both toolsets. Claude can first pick the right tool with
find_tools_for_task, then research the vendor with research_company, without adding a
second server.#Remove it
Shell
claude mcp remove stackresolveSee MCP for the full tool list and Rate Limits for the keyed and anonymous limits.