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.
38 lines
736 B
YAML
38 lines
736 B
YAML
use_default_settings: true
|
|
|
|
general:
|
|
debug: false
|
|
instance_name: "context-kit-search"
|
|
donation_url: false
|
|
contact_url: false
|
|
enable_metrics: false
|
|
|
|
search:
|
|
safe_search: 0
|
|
autocomplete: ""
|
|
formats:
|
|
- html
|
|
- json
|
|
|
|
server:
|
|
# Local placeholder. The Docker service also sets SEARXNG_SECRET from .env;
|
|
# keep SearXNG bound to 127.0.0.1 unless you review this config separately.
|
|
secret_key: "local-only-change-if-exposed"
|
|
limiter: false
|
|
image_proxy: true
|
|
bind_address: "0.0.0.0"
|
|
|
|
outgoing:
|
|
request_timeout: 10.0
|
|
max_request_timeout: 15.0
|
|
pool_connections: 20
|
|
pool_maxsize: 20
|
|
|
|
engines:
|
|
- name: duckduckgo
|
|
disabled: false
|
|
- name: bing
|
|
disabled: false
|
|
- name: google
|
|
disabled: false
|