claude-code-ultimate-guide/examples/config/mcp.json
Florian BRUNIAUX 97f9167a61 docs: add Kairn memory MCP + resource evaluations + guide updates
- guide/ultimate-guide.md §10.2: Add Kairn (knowledge graph memory with biological decay)
  - Typed relationships (depends-on, resolves, causes), 18 MCP tools
  - Updated comparison table: Serena / grepai / doobidoo / Kairn
  - Added decision routing for long-term memory + causality tracking
- guide/ultimate-guide.md §5.1: Add real-world CLAUDE.md migration example (Avo, 600-line → 15 path-scoped files)
- guide/ai-ecosystem.md: Minor update
- machine-readable/reference.yaml: Add Kairn entries
- examples/config/mcp.json: Add Kairn MCP config
- docs/resource-evaluations/: Add 2 new evaluations (context-evaluator-packmind, kairn-memory-mcp)
- docs/resource-evaluations/agents-md-empirical-study: Add community reception section
- docs/resource-evaluations/2026-02-23-agentsview: Minor fix

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-25 17:39:20 +01:00

48 lines
1.4 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)"
},
"kairn": {
"command": "python",
"args": ["-m", "kairn", "serve"],
"description": "Knowledge graph memory with biological decay — auto-expires stale info (complements doobidoo/Serena)"
}
}
}