-
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Complete installation instructions for all supported editors.
npx @j0kz/mcp-agents@latestThe installer will:
- Auto-detect your editor (Claude Code, Cursor, Windsurf, VS Code, Roo Code)
- Install all 9 MCP tools
- Configure your editor automatically
- Clear npm cache to prevent issues
- Validate and fix malformed config files
After installation: Restart your editor to load the tools.
Automatic (Recommended):
npx @j0kz/mcp-agents@latestManual Configuration:
-
Locate config file:
-
Windows:
%APPDATA%\Claude\claude_desktop_config.json -
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json -
Linux:
~/.config/Claude/claude_desktop_config.json
-
Windows:
-
Add MCP servers:
{
"mcpServers": {
"smart-reviewer": {
"command": "npx",
"args": ["-y", "@j0kz/smart-reviewer-mcp@latest"]
},
"test-generator": {
"command": "npx",
"args": ["-y", "@j0kz/test-generator-mcp@latest"]
},
"architecture-analyzer": {
"command": "npx",
"args": ["-y", "@j0kz/architecture-analyzer-mcp@latest"]
},
"security-scanner": {
"command": "npx",
"args": ["-y", "@j0kz/security-scanner-mcp@latest"]
},
"refactor-assistant": {
"command": "npx",
"args": ["-y", "@j0kz/refactor-assistant-mcp@latest"]
},
"api-designer": {
"command": "npx",
"args": ["-y", "@j0kz/api-designer-mcp@latest"]
},
"db-schema": {
"command": "npx",
"args": ["-y", "@j0kz/db-schema-mcp@latest"]
},
"doc-generator": {
"command": "npx",
"args": ["-y", "@j0kz/doc-generator-mcp@latest"]
},
"orchestrator": {
"command": "npx",
"args": ["-y", "@j0kz/orchestrator-mcp@latest"]
}
}
}- Restart Claude Code
Automatic (Recommended):
npx @j0kz/mcp-agents@latest cursorManual Configuration:
- Create/edit
.cursorrulesor.cursor/mcp.jsonin your project root - Add the same MCP server configuration as Claude Code above
- Restart Cursor
Automatic (Recommended):
npx @j0kz/mcp-agents@latest windsurfManual Configuration:
- Create/edit
.windsurfrulesin your project root - Add the same MCP server configuration as Claude Code above
- Restart Windsurf
Automatic (Recommended):
npx @j0kz/mcp-agents@latest vscodeManual Configuration:
Configuration depends on your MCP extension. Typically:
- Install an MCP-compatible extension (Continue, Cline, etc.)
- Add MCP server configuration to extension settings
- Restart VS Code
Automatic (Recommended):
npx @j0kz/mcp-agents@latest rooManual Configuration:
- Create/edit
.roo/mcp.jsonin your project root - Add the same MCP server configuration as Claude Code above
- Restart Roo Code
If you only need specific tools, install them individually:
# Smart Reviewer only
npx @j0kz/mcp-agents@latest --tools smart-reviewer
# Multiple specific tools
npx @j0kz/mcp-agents@latest --tools smart-reviewer,test-generator,security-scannerOr manually add only the tools you want to your editor's config file.
- Restart your editor
- Start a new chat
- Type
@and you should see all installed MCP tools listed - Try using a tool: "Review this file with smart-reviewer"
Claude Code (Windows):
cat $env:APPDATA\Claude\claude_desktop_config.jsonClaude Code (macOS/Linux):
cat ~/Library/Application\ Support/Claude/claude_desktop_config.jsonCursor/Windsurf:
cat .cursorrules
# or
cat .cursor/mcp.jsonYou should see all 9 MCP tools listed under mcpServers.
Try this in your editor's chat:
Use smart-reviewer to analyze this code:
function add(a, b) {
console.log(a, b);
return a + b;
}
You should get a detailed code review with metrics and suggestions.
npx @j0kz/mcp-agents@latestThe installer will automatically update all tools to the latest versions.
Edit your config file and change the version:
{
"smart-reviewer": {
"command": "npx",
"args": ["-y", "@j0kz/smart-reviewer-mcp@1.0.35"]
}
}Or use @latest to always get the newest version:
{
"smart-reviewer": {
"command": "npx",
"args": ["-y", "@j0kz/smart-reviewer-mcp@latest"]
}
}Automatic:
npx @j0kz/mcp-agents@latest --uninstallManual:
- Open your editor's config file
- Remove the
mcpServerssection or individual tools - Restart your editor
npm cache clean --force- Restart your editor (required after any config changes)
- Check config file syntax (must be valid JSON)
- Run installer again:
npx @j0kz/mcp-agents@latest
Windows:
# Run PowerShell as Administrator
Set-ExecutionPolicy RemoteSigned -Scope CurrentUsermacOS/Linux:
# Clear npm cache
npm cache clean --force
# Try again
npx @j0kz/mcp-agents@latestThe installer auto-fixes JSON errors. If issues persist:
# Backup config
cp ~/.config/claude/claude_desktop_config.json ~/.config/claude/claude_desktop_config.json.backup
# Reinstall
npx @j0kz/mcp-agents@latest# Clear cache
npm cache clean --force
# Update npm
npm install -g npm@latest
# Try again
npx @j0kz/mcp-agents@latest- Node.js: 18.x or higher
- npm: 8.x or higher
- Editor: Claude Code, Cursor, Windsurf, VS Code, or Roo Code
- OS: Windows, macOS, or Linux
- Quick Start - Get started in 5 minutes
- Troubleshooting - Common issues and solutions
- Installation - Editor-specific guides
- Contributing - Help improve these tools
Need help? Open an issue