context-server

context-server/context-server
★ 0 stars Rust Memory/Knowledge Updated today
Lightweight MCP server for semantic search over markdown knowledge bases
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "context-server": {
      "command": "cargo",
      "args": [
        "run",
        "--",
        "context-server"
      ]
    }
  }
}

README Excerpt

Semantic search over a folder of markdown, served as an [MCP](https://modelcontextprotocol.io/) server for coding agents. Index once into a SQLite DB (embeddings + BM25). Point Claude Code, Cursor, or any MCP client at `serve`, and the agent can search that corpus instead of guessing from memory. One Rust binary. ONNX Runtime is linked in via [`ort`](https://github.com/pykeio/ort) / [`fastembed`](https://github.com/Anush008/fastembed-rs) — no separate `libonnxruntime` to ship. SQLite is bundled.

Tools (4)

answer_questionget_documentlist_documentssemantic_search