MCP Connector

Local Document Search & Summarization

A local-first MCP server for document management and semantic search, with a web dashboard and REST API for AI agents.

Works with google gemini

91
Spark score
out of 100
Updated 24 days ago
Version 1.15.3

Add to Favorites

Why it matters

Empower your local document management with intelligent semantic search and AI-powered summarization. Quickly find and understand information within your documents without relying on external cloud services.

Outcomes

What it gets done

01

Ingest and index local documents for semantic search.

02

Perform AI-driven searches for contextual understanding.

03

Extract key information and generate summaries.

04

Manage document versions and metadata locally.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-mcp-documentation-server | bash

Capabilities

Tools your agent gets

add_document

Add a document with title, content, and metadata to the local store.

list_documents

Show a list of saved documents and their metadata.

get_document

Get a full document by id from the local store.

delete_document

Delete a document, its chunks, and associated source files.

process_uploads

Convert files in uploads folder to documents with chunking, embeddings, and backup.

get_uploads_path

Return the absolute path to the uploads folder.

list_uploads_files

Show files in the uploads folder.

search_documents_with_ai

AI-powered search using Gemini for advanced document analysis and contextual understanding.

+2 tools

Overview

MCP Documentation Server

A local-first MCP server for document management and semantic search over uploaded text, Markdown, and PDF files, pairing MCP tools with a REST API and web dashboard. Use when an AI coding agent needs a private, offline knowledge base it can search semantically without loading MCP schemas into context.

What it does

MCP Documentation Server is a local-first Model Context Protocol server for document management and semantic search, letting AI coding agents store, search, and retrieve knowledge without external databases, cloud APIs, or vendor lock-in. It ships with a full web dashboard for browsing, searching, uploading, and managing documents from a browser, and exposes every MCP tool as a REST API as well.

When to use - and when NOT to

Use this when an AI coding agent such as Claude Code, OpenCode, Gemini CLI, or Cursor needs a local knowledge base it can search semantically - adding documents, processing uploaded .txt/.md/.pdf files, and running hybrid full-text plus vector search - entirely offline. The REST API is the recommended integration path for agents specifically because it avoids loading MCP tool schemas into the conversation context; only the response JSON enters. A ready-made Agent Skill at skills/documentation-server/SKILL.md teaches an agent every REST endpoint with examples, installable via npx skills add.

Capabilities

Twelve tools across three groups. Document management: add_document, list_documents, get_document, delete_document. File processing: process_uploads (chunk and embed everything in the uploads folder), get_uploads_path, list_uploads_files, get_ui_url. Search: search_documents (vector search within one document), search_all_documents (hybrid full-text plus vector search across all documents), get_context_window (neighboring chunks for broader LLM context), and search_documents_with_ai (Gemini-powered analysis, requires GEMINI_API_KEY). Search uses parent-child chunking: documents are split into large parent chunks that preserve context, then into small child chunks for precise vector matching, with results deduplicated by parent at query time. A web dashboard starts automatically on port 3080 alongside the MCP server, offering a document overview, browsing, an add-document form, search-all and search-in-document views, AI search, drag-and-drop file uploads, and a context-window explorer. Local embeddings run through Transformers.js with an LRU cache; the default model is Xenova/all-MiniLM-L6-v2 (384 dimensions), with Xenova/paraphrase-multilingual-mpnet-base-v2 (768 dimensions) recommended for best multilingual quality - changing models requires re-adding all documents since embeddings from different models are incompatible.

How to install

Published on the MCP Registry, so no clone is needed - install via npx:

{
  "mcpServers": {
    "documentation": {
      "command": "npx",
      "args": ["-y", "@andrea9293/mcp-documentation-server"]
    }
  }
}

The web UI opens automatically at http://localhost:3080. All further configuration is via optional environment variables: MCP_BASE_DIR for the data directory (default ~/.mcp-documentation-server), MCP_EMBEDDING_MODEL, GEMINI_API_KEY to enable AI search, START_WEB_UI to disable the dashboard, and WEB_HOST/WEB_PORT to change its binding. Without GEMINI_API_KEY, only the local embedding-based search tools are available.

Who it's for

Developers using AI coding agents who want a private, offline knowledge base - project docs, specs, references - searchable both by the agent via MCP or REST and by a human through the built-in dashboard, with no data leaving the machine unless Gemini AI search is explicitly enabled, released under the MIT license.

Source README

MCP Registry
npm version
GitHub Stars
License: MIT
Ask DeepWiki

Donate with PayPal

MCP Documentation Server

Local-first document management and semantic search for AI coding agents. No external databases, no cloud APIs, no vendor lock-in.

Unlike other MCP servers that are CLI-only, this one ships with a full web dashboard - browse, search, upload, and manage your knowledge base from your browser. Every MCP tool is also exposed as a REST API, giving AI agents a lean, schema-free interface.

  • ๐Ÿ  Runs fully offline - Orama vector DB with local AI embeddings (Transformers.js)
  • ๐ŸŒ Built-in Web UI - starts automatically on port 3080 alongside the MCP server
  • ๐Ÿ” Hybrid search - full-text + vector similarity with parent-child chunking
  • ๐Ÿค– Optional AI search - Google Gemini for advanced document analysis (bring your own key)
  • ๐Ÿ“ Drag & drop uploads - .txt, .md, .pdf support
  • ๐Ÿ“ฆ Published on the MCP Registry - installable via npx, no clone needed

Quick Start

{
  "mcpServers": {
    "documentation": {
      "command": "npx",
      "args": ["-y", "@andrea9293/mcp-documentation-server"]
    }
  }
}

Open your browser at http://localhost:3080 - the web UI starts automatically.

๐Ÿค– Agent Skill (REST API) - recommended for AI agents

Every MCP tool is also accessible via the REST API on http://127.0.0.1:3080/api/. This is the recommended way to interact from AI agents (Claude Code, OpenCode, Gemini CLI, Cursor) because it avoids loading MCP tool schemas into the conversation context - only the response JSON enters.

curl -s http://127.0.0.1:3080/api/config
curl -s http://127.0.0.1:3080/api/documents
curl -s -X POST http://127.0.0.1:3080/api/search-all \
  -H "Content-Type: application/json" \
  -d '{"query": "your search", "limit": 5}'

A ready-to-use skill is included at skills/documentation-server/SKILL.md - it teaches your agent every endpoint with examples. Install it:

npx skills add https://github.com/andrea9293/mcp-documentation-server --skill documentation-server

Basic workflow

  1. Add documents using add_document or place .txt / .md / .pdf files in the uploads folder and call process_uploads.
  2. Search across everything with search_all_documents, or within a single document with search_documents.
  3. Use get_context_window to fetch neighboring chunks and give the LLM broader context.

Web UI

The web interface starts automatically on port 3080 when the MCP server launches. From the web UI you can:

  • ๐Ÿ“Š Dashboard - overview of all documents and stats
  • ๐Ÿ“„ Documents - browse, view, and delete documents
  • โž• Add Document - create documents with title, content, and metadata
  • ๐Ÿ” Search All - semantic search across all documents
  • ๐ŸŽฏ Search in Doc - search within a specific document
  • ๐Ÿค– AI Search - Gemini-powered analysis (if GEMINI_API_KEY is set)
  • ๐Ÿ“ Upload Files - drag & drop files and process them into the knowledge base
  • ๐ŸชŸ Context Window - explore chunks around a specific index

Configure an MCP client

Minimal
{
  "mcpServers": {
    "documentation": {
      "command": "npx",
      "args": ["-y", "@andrea9293/mcp-documentation-server"]
    }
  }
}
With environment variables (all optional)
{
  "mcpServers": {
    "documentation": {
      "command": "npx",
      "args": ["-y", "@andrea9293/mcp-documentation-server"],
      "env": {
        "MCP_BASE_DIR": "/path/to/workspace",
        "GEMINI_API_KEY": "your-api-key-here",
        "MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
        "START_WEB_UI": "true",
        "WEB_HOST": "127.0.0.1",
        "WEB_PORT": "3080"
      }
    }
  }
}

All environment variables are optional. Without GEMINI_API_KEY, only the local embedding-based search tools are available.

MCP Tools

The server registers the following tools (all validated with Zod schemas):

๐Ÿ“„ Document Management

Tool Description
add_document Add a document (title, content, optional metadata)
list_documents List all documents with metadata and content preview
get_document Retrieve the full content of a document by ID
delete_document Remove a document, its chunks, database entries, and associated files

๐Ÿ“ File Processing

Tool Description
process_uploads Process all files in the uploads folder (chunking + embeddings)
get_uploads_path Returns the absolute path to the uploads folder
list_uploads_files Lists files in the uploads folder with size and format info
get_ui_url Returns the Web UI URL (e.g. http://localhost:3080) - useful to open the dashboard or to locate the uploads folder from the browser

๐Ÿ” Search

Tool Description
search_documents Semantic vector search within a specific document
search_all_documents Hybrid (full-text + vector) cross-document search
get_context_window Returns a window of chunks around a given chunk index
search_documents_with_ai ๐Ÿค– AI-powered search using Gemini (requires GEMINI_API_KEY)

Configuration

Configure via environment variables or a .env file in the project root:

Variable Default Description
MCP_BASE_DIR ~/.mcp-documentation-server Base directory for data storage
MCP_EMBEDDING_MODEL Xenova/all-MiniLM-L6-v2 Embedding model name
GEMINI_API_KEY - Google Gemini API key (enables search_documents_with_ai)
MCP_CACHE_ENABLED true Enable/disable LRU embedding cache
START_WEB_UI true Set to false to disable the built-in web interface
WEB_HOST 127.0.0.1 Bind address for the web UI (use 0.0.0.0 to expose on all interfaces)
WEB_PORT 3080 Port for the web UI
MCP_STREAMING_ENABLED true Enable streaming reads for large files
MCP_STREAM_CHUNK_SIZE 65536 Streaming buffer size in bytes (64KB)
MCP_STREAM_FILE_SIZE_LIMIT 10485760 Threshold to switch to streaming (10MB)

Storage layout

~/.mcp-documentation-server/     # Or custom path via MCP_BASE_DIR
โ”œโ”€โ”€ data/
โ”‚   โ”œโ”€โ”€ orama-chunks.msp         # Orama vector DB (child chunks + embeddings)
โ”‚   โ”œโ”€โ”€ orama-docs.msp           # Orama document DB (full content + metadata)
โ”‚   โ”œโ”€โ”€ orama-parents.msp        # Orama parent chunks DB (context sections)
โ”‚   โ”œโ”€โ”€ migration-complete.flag   # Written after legacy JSON migration
โ”‚   โ””โ”€โ”€ *.md                     # Markdown copies of documents
โ””โ”€โ”€ uploads/                     # Drop .txt, .md, .pdf files here

Embedding Models

Set via MCP_EMBEDDING_MODEL:

Model Dimensions Notes
Xenova/all-MiniLM-L6-v2 384 Default - fast, good quality
Xenova/paraphrase-multilingual-mpnet-base-v2 768 Recommended - best quality, multilingual

Models are downloaded on first use (~80-420 MB). The vector dimension is determined automatically from the provider.

โš ๏ธ Important: Changing the embedding model requires re-adding all documents - embeddings from different models are incompatible. The Orama database is recreated automatically when the dimension changes.

Architecture

Server (FastMCP, stdio)
  โ”œโ”€ Web UI (Express, port 3080)
  โ”‚    โ””โ”€ REST API โ†’ DocumentManager
  โ””โ”€ MCP Tools
       โ””โ”€ DocumentManager
            โ”œโ”€ OramaStore          โ€” Orama vector DB (chunks DB + docs DB + parents DB), persistence, migration
            โ”œโ”€ IntelligentChunker  โ€” Parent-child chunking (code, markdown, text, PDF)
            โ”œโ”€ EmbeddingProvider   โ€” Local embeddings via @xenova/transformers
            โ”‚    โ””โ”€ EmbeddingCache โ€” LRU in-memory cache
            โ””โ”€ GeminiSearchService โ€” Optional AI search via Google Gemini
  • OramaStore manages three Orama instances: one for document metadata/content, one for child chunks with vector embeddings, and one for parent chunks (context sections). All are persisted to binary files on disk and restored on startup.
  • IntelligentChunker implements the Parent-Child Chunking pattern: documents are first split into large parent chunks that preserve full context (sections, paragraphs), then each parent is further split into small child chunks for precise vector search. At query time, results are deduplicated by parent so that the LLM receives both the matched fragment and the broader context.
  • EmbeddingProvider lazily loads a Transformers.js model for local inference - no API calls needed.

Development

git clone https://github.com/andrea9293/mcp-documentation-server.git
cd mcp-documentation-server
npm install
npm run dev       # FastMCP dev mode with hot reload
npm run build     # TypeScript compilation
npm run inspect   # FastMCP web UI for interactive tool testing
npm start         # Direct tsx execution (MCP server + web UI)
npm run web       # Run only the web UI (development)
npm run web:build # Run only the web UI (compiled)

Star History

Star History Chart

Built with FastMCP, Orama, and TypeScript

FAQ

Common questions

Discussion

Questions & comments ยท 0

Sign In Sign in to leave a comment.