Initial public release
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.
This commit is contained in:
23
snippets/opencode.json
Normal file
23
snippets/opencode.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"$schema": "https://opencode.ai/config.json",
|
||||
"mcp": {
|
||||
"context-web-search": {
|
||||
"type": "local",
|
||||
"command": ["context-kit", "web-search"],
|
||||
"enabled": true,
|
||||
"timeout": 60000
|
||||
},
|
||||
"context-docs": {
|
||||
"type": "local",
|
||||
"command": ["context-kit", "docs"],
|
||||
"enabled": true,
|
||||
"timeout": 120000
|
||||
},
|
||||
"context-repomix": {
|
||||
"type": "local",
|
||||
"command": ["context-kit", "repomix"],
|
||||
"enabled": true,
|
||||
"timeout": 120000
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user