Get the AgentStack MCP server working in Cursor in under 2 minutes.
Flow: Create an anonymous project (no account) → get API key → add key in Cursor → 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 Cursor.
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 Cursor Project"}}'- From the response, copy
user_api_key(orapi_key/project_api_key) — use it as your API key in Cursor.
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.
- Open Cursor Settings → Features → Model Context Protocol (or MCP Servers).
- Click Add Server (or edit your MCP config file).
- Use the config from
mcp.jsonin this repo:- Name:
agentstack - Type:
HTTP - Base URL:
https://agentstack.tech/mcp - Headers: Add header
X-API-Keywith your API key.
- Name:
Config file locations:
- Windows:
%APPDATA%\Cursor\User\globalStorage\mcp-config.json - macOS:
~/Library/Application Support/Cursor/User/globalStorage/mcp-config.json - Linux:
~/.config/Cursor/User/globalStorage/mcp-config.json
Example snippet for your MCP config:
{
"mcpServers": {
"agentstack": {
"type": "http",
"baseUrl": "https://agentstack.tech/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY_HERE"
}
}
}
}- Restart Cursor if the server does not appear.
In Cursor Chat 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 from AgentStack, no extra spaces in the header value.
- Check Base URL — must be
https://agentstack.tech/mcp. - Restart Cursor 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)