- Add .gitignore to prevent sensitive data - Replace /home/roman with ~/.claude placeholder - No API keys or credentials in repository - No chat logs or conversation history 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
98 lines
3.1 KiB
JSON
98 lines
3.1 KiB
JSON
{
|
|
"version": "1.0.0",
|
|
"last_updated": "2026-01-27T00:00:00Z",
|
|
"servers": {
|
|
"arc": {
|
|
"name": "ARC Protocol MCP",
|
|
"description": "Subagent file operations and protocol implementation",
|
|
"command": "python3",
|
|
"args": ["~/.claude/ralph-integration/arc/.agent/mcp/arc_mcp_server.py"],
|
|
"enabled": true,
|
|
"category": "core"
|
|
},
|
|
"claude-mem": {
|
|
"name": "Claude Memory",
|
|
"description": "Persistent memory and context management for Claude",
|
|
"command": "node",
|
|
"args": ["~/.claude/plugins/cache/thedotmack/claude-mem/plugin/scripts/mcp-server.cjs"],
|
|
"enabled": true,
|
|
"category": "memory"
|
|
},
|
|
"github": {
|
|
"name": "GitHub MCP",
|
|
"description": "GitHub API integration for repository operations",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-github"],
|
|
"enabled": false,
|
|
"category": "external",
|
|
"requires_auth": true
|
|
},
|
|
"filesystem": {
|
|
"name": "Filesystem MCP",
|
|
"description": "Local filesystem access and operations",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-filesystem", "~/.claude"],
|
|
"enabled": true,
|
|
"category": "core"
|
|
},
|
|
"git": {
|
|
"name": "Git MCP",
|
|
"description": "Git operations and repository management",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-git"],
|
|
"enabled": true,
|
|
"category": "core"
|
|
},
|
|
"brave-search": {
|
|
"name": "Brave Search MCP",
|
|
"description": "Web search via Brave Search API",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
|
|
"enabled": false,
|
|
"category": "external",
|
|
"requires_auth": true
|
|
},
|
|
"postgres": {
|
|
"name": "PostgreSQL MCP",
|
|
"description": "PostgreSQL database operations",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-postgres"],
|
|
"enabled": false,
|
|
"category": "database",
|
|
"requires_connection_string": true
|
|
},
|
|
"sqlite": {
|
|
"name": "SQLite MCP",
|
|
"description": "SQLite database operations",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-sqlite", "--db-path", "~/.claude/mcp-servers/data.db"],
|
|
"enabled": true,
|
|
"category": "database"
|
|
},
|
|
"puppeteer": {
|
|
"name": "Puppeteer MCP",
|
|
"description": "Browser automation and web scraping",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-puppeteer"],
|
|
"enabled": false,
|
|
"category": "automation"
|
|
},
|
|
"fetch": {
|
|
"name": "Fetch MCP",
|
|
"description": "HTTP requests and web API integration",
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-fetch"],
|
|
"enabled": true,
|
|
"category": "network"
|
|
}
|
|
},
|
|
"categories": {
|
|
"core": "Essential MCP servers for basic functionality",
|
|
"memory": "Persistent memory and context management",
|
|
"external": "Third-party API integrations",
|
|
"database": "Database connectivity and operations",
|
|
"automation": "Task automation and scripting",
|
|
"network": "Network and HTTP operations"
|
|
}
|
|
}
|