- Add comprehensive section in ultimate-guide.md (L.6385-6523) - Document 3 backends: sqlite_vec, cloudflare, hybrid - List 12 MCP tools with descriptions - Add environment variables reference - Include multi-client sync patterns (same machine vs multi-device) - Add disclaimer: under testing, not yet validated in production - Update reference.yaml with 8 new entries - Add to cheatsheet.md and mcp.json template Complements Serena (key-value) with semantic search capabilities. Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"mcpServers": {
|
|
"serena": {
|
|
"command": "uvx",
|
|
"args": ["serena", "--project-root", "."],
|
|
"description": "Codebase indexation and session memory"
|
|
},
|
|
"context7": {
|
|
"command": "npx",
|
|
"args": ["-y", "@upstash/context7-mcp"],
|
|
"description": "Library documentation lookup"
|
|
},
|
|
"sequential": {
|
|
"command": "npx",
|
|
"args": ["-y", "@anthropic/sequential-thinking-mcp"],
|
|
"description": "Structured multi-step reasoning"
|
|
},
|
|
"playwright": {
|
|
"command": "npx",
|
|
"args": ["-y", "@anthropic/playwright-mcp"],
|
|
"description": "Browser automation and testing"
|
|
},
|
|
"postgres": {
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"@modelcontextprotocol/server-postgres",
|
|
"postgresql://user:password@localhost:5432/database"
|
|
],
|
|
"description": "PostgreSQL database queries"
|
|
},
|
|
"grepai": {
|
|
"command": "grepai",
|
|
"args": ["mcp-serve"],
|
|
"description": "Semantic code search and call graph analysis (requires Ollama)"
|
|
},
|
|
"doobidoo-memory": {
|
|
"command": "memory",
|
|
"args": ["server"],
|
|
"description": "Semantic memory with cross-session search (complements Serena)"
|
|
}
|
|
}
|
|
}
|