📦 Install Cheatsheet
Three ways to install the Agent Reliability Stack: as a Python package, an npm module, or an MCP server inside Claude Desktop / Cursor / Cline / Windsurf / Zed.
Python (PyPI)
All five
pip install mk-agentkit
Individual
pip install agentfit-py pip install agentguard-firewall pip install agentsnap-py pip install agentvet-py pip install agentcast-py
JavaScript / TypeScript (npm)
All five
npm install @mukundakatta/agentkit
Individual
npm install @mukundakatta/agentfit npm install @mukundakatta/agentguard npm install @mukundakatta/agentsnap npm install @mukundakatta/agentvet npm install @mukundakatta/agentcast
MCP servers
Run any of the five as an MCP server, no install. Just point your client at the npx command.
# Add to ~/Library/Application Support/Claude/claude_desktop_config.json
{
"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"] }
}
}
Same shape works for Cursor (~/.cursor/mcp.json), Cline, Windsurf, and Zed.