๐งฉ MCP Quickstart
Add the 5 agent-stack tools to any MCP client in under a minute. The npx commands work cross-platform โ no Python or Node setup needed beyond what your client already has.
Claude Desktop
- Open
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows). Create the file if it doesn't exist. - Paste the config below.
- Quit + reopen Claude Desktop.
- Look for the ๐จ hammer icon โ you should see the 5 servers listed.
{
"mcpServers": {
"agentfit": { "command": "npx", "args": ["-y", "@mukundakatta/agentfit-mcp"] },
"agentguard": { "command": "npx", "args": ["-y", "@mukundakatta/agentguard-mcp"] },
"agentsnap": { "command": "npx", "args": ["-y", "@mukundakatta/agentsnap-mcp"] },
"agentvet": { "command": "npx", "args": ["-y", "@mukundakatta/agentvet-mcp"] },
"agentcast": { "command": "npx", "args": ["-y", "@mukundakatta/agentcast-mcp"] }
}
}
Cursor
Edit ~/.cursor/mcp.json with the same shape.
Cline (VS Code)
Cline โ Settings โ MCP Servers โ paste the same JSON (under mcpServers).
Windsurf
Settings โ Cascade โ MCP Servers โ same JSON shape.
Zed
~/.config/zed/settings.json:
{
"context_servers": {
"agentfit": { "command": { "path": "npx", "args": ["-y", "@mukundakatta/agentfit-mcp"] } }
}
}
Verify it works
In any MCP-aware chat, ask: "Use agentvet to validate that the email tool got {to: 'a@b.com', subject: 'hi'} against the schema {to: str, subject: str, body: str}". The model will call into the MCP server and report back.
Want to sanity-check your config first? Try the MCP Config Validator.