Three local MCP servers for coding agents, designed for Claude Code and OpenCode: - context-web-search: SearXNG-backed web search and URL fetch - context-docs: semantic search over curated llms.txt docs - context-repomix: pack local or remote repos into AI context Defaults are local-first: SearXNG binds to 127.0.0.1, no hosted API keys are required, and Repomix mounts only the current project read-only.
17 lines
295 B
JSON
17 lines
295 B
JSON
{
|
|
"mcpServers": {
|
|
"context-web-search": {
|
|
"command": "context-kit",
|
|
"args": ["web-search"]
|
|
},
|
|
"context-docs": {
|
|
"command": "context-kit",
|
|
"args": ["docs"]
|
|
},
|
|
"context-repomix": {
|
|
"command": "context-kit",
|
|
"args": ["repomix"]
|
|
}
|
|
}
|
|
}
|