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:
2026-05-21 08:43:38 -07:00
commit c905cf86c8
24 changed files with 1023 additions and 0 deletions

23
.env.example Normal file
View File

@@ -0,0 +1,23 @@
# Copy to .env to override local defaults.
# Where Context Kit stores docs indexes and model caches.
# Default: $HOME/.local/share/context-kit
# CONTEXT_KIT_DATA_DIR=/path/to/context-kit-data
# Docker Compose project name. This controls the Docker network name.
CONTEXT_KIT_COMPOSE_PROJECT=context-kit
# Local SearXNG port. Bound to 127.0.0.1 only.
CONTEXT_KIT_SEARXNG_PORT=8099
# Local-only SearXNG secret. Set this to any random string if you expose SearXNG
# beyond localhost, which the default setup does not do.
CONTEXT_KIT_SEARXNG_SECRET=change-me-local-only
# Docs indexing defaults.
CONTEXT_KIT_DOCS_TTL=7d
CONTEXT_KIT_DOCS_MAX_GET_BYTES=75000
CONTEXT_KIT_DOCS_EMBED_MODEL=BAAI/bge-small-en-v1.5
# One or more source files, separated by spaces.
CONTEXT_KIT_DOCS_SOURCES=config/sources.default.txt