MCP Hub
Back to servers

inkdex

MCP server that makes your markdown docs searchable

npm198/wk
Updated
Mar 1, 2026

Quick Install

npx -y inkdex

Inkdex

Inkdex is a MCP server that makes your markdown docs searchable for AI. Point it at your docs directory, get hybrid search (text + vector) powered by local AI embeddings.

Tools

ToolDescription
search_docsSearch indexed documentation. Returns matching chunks ranked by relevance.

Usage

Add to your MCP client configuration:

{
  "mcpServers": {
    "inkdex": {
      "command": "npx",
      "args": [
        "-y",
        "inkdex"
      ],
      "env": {
        "DOCS_PATH": "/path/to/your/docs"
      }
    }
  }
}
VariableRequiredDescription
DOCS_PATHYesPath to the directory containing markdown files to index

To expose docs remotely, use a MCP gateway like MCPBox.

How it works

Documents are split along heading boundaries with overlap to preserve context. Chunks are embedded locally and stored in SQLite for hybrid retrieval. Indexing runs on startup and is incremental — only changed files are re-processed.

Reviews

No reviews yet

Sign in to write a review