claude-code-ultimate-guide/examples/config/mcp.json
Florian BRUNIAUX 846e2e6a1b docs(mcp): add grepai semantic search and call graph documentation
- Add grepai section in ultimate-guide.md (Section 8.3)
  - Privacy-first semantic code search using Ollama embeddings
  - Call graph analysis: trace callers, callees, dependency graphs
  - Combined workflow with Serena for exploration + editing
  - Setup instructions and MCP tools reference
- Update decision tree and comparison table to include grepai
- Add grepai config to examples/config/mcp.json
- Document changes in CHANGELOG.md [Unreleased]

Source: https://github.com/yoanbernabeu/grepai

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-15 10:56:18 +01:00

38 lines
1 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)"
}
}
}