Get the AgentStack MCP server working in Claude Code in under 2 minutes.
Flow: Create an anonymous project (no account) → get API key → add key in Claude Code → use 60+ tools in chat. The MCP server allows GET /mcp/tools and projects.create_project_anonymous without X-API-Key so you can get a key before configuring Claude.
Option A — No account (try first):
- Create an anonymous project to get keys (no signup). From a terminal:
curl -X POST https://agentstack.tech/mcp/tools/projects.create_project_anonymous \
-H "Content-Type: application/json" \
-d '{"params": {"name": "My Claude Project"}}'- From the response, copy
user_api_key(orapi_key/project_api_key) — use it as your API key below.
Option B — With account:
- Sign in at AgentStack and create a project.
- In the project settings, create an API key.
- Use that key as
X-API-Keybelow.
Claude Code connects to remote MCP servers via HTTP. Run once (replace YOUR_API_KEY_HERE with your key):
claude mcp add --transport http agentstack https://agentstack.tech/mcp --header "X-API-Key: YOUR_API_KEY_HERE"Options (--transport, --header) must come before the server name.
To use a different scope (e.g. project-level), add --scope project. See Claude Code MCP docs for details.
In Claude Code you can say:
- "Create a new project called Test via AgentStack MCP"
- "List my AgentStack projects"
- "Get stats for project 1025"
The agent will call tools like projects.create_project_anonymous, projects.get_projects, projects.get_stats, etc.
- Check API key — valid key, no extra spaces in the header.
- Check URL — use
https://agentstack.tech/mcpin theclaude mcp addcommand. - Restart Claude Code after changing MCP config.
For all 60+ tools (Auth, Payments, Projects, Scheduler, Analytics, Rules, Webhooks, Notifications, Wallets), see the main docs:
- MCP Server Capabilities (in the AgentStack repo)