mcp-docs

mcp-docs

MCP server for documentation search that automatically indexes web documentation sites and provides semantic, full-text, or hybrid search capabilities.

Category
Visit Server

README

MCP Docs Server

MCP server for documentation search with automatic web indexing.

npm version

Usage via npx (Recommended)

Run the MCP server directly without installation:

# STDIO mode (for MCP client integration)
SEED_URLS="Docs|https://example.com/docs|sidebar|0" TRANSPORT=stdio npx @pgupta1795/mcp-docs

# HTTP mode
SEED_URLS="Docs|https://example.com/docs|sidebar|0" TRANSPORT=http npx @pgupta1795/mcp-docs

MCP Client Configuration (npx)

{
  "mcpServers": {
    "docs": {
      "command": "npx",
      "args": ["-y", "@pgupta1795/mcp-docs"],
      "env": {
        "TRANSPORT": "stdio",
        "SEED_URLS": "TVC Classic 2025.4.0|https://products.technia.com/app/docs/tvc-documentation-2025.4.0/tvc/install/index.html|navbar|0,TVC Helium 2025.4.0|https://products.technia.com/app/docs/tvc-helium-documentation-2025.4.0/index.html|navbar|0,TIF Classic 2025.4.0|https://products.technia.com/app/docs/tif-documentation-2025.4.0/tif-classic/2025.4.0/main/index.html|sidebar|0,TIF Cloud|https://forseven.tif.technia.cloud/docs/tif-cloud/Current/main/index.html|sidebar|0",
        "SEARCH_MODE": "SEMANTIC_ONLY",
        "DB_PATH": "C:/GBS/Search_Tool/mcp-docs/data/mcp-docs.db"
      }
    }
  }
}

Quick Start (Local Development)

npm install
npm run build

Running the Server

STDIO Mode

TRANSPORT=stdio npm run start
# Or for development:
npm run dev:stdio

HTTP Mode

TRANSPORT=http npm run start
# Or for development:
npm run dev:http

HTTP endpoint: http://localhost:5004/docs/mcp


MCP Client Configuration

STDIO Mode

{
  "mcpServers": {
    "mcp-docs": {
      "command": "node",
      "args": ["dist/index.js"],
      "cwd": "C:/path/to/mcp-docs",
      "env": {
        "TRANSPORT": "stdio",
        "SEED_URLS": "TVC Classic|https://products.technia.com/app/docs/tvc-documentation-2025.4.0/tvc/install/index.html|sidebar|0"
      }
    }
  }
}

HTTP Mode

{
  "mcpServers": {
    "mcp-docs": {
      "type": "http",
      "url": "http://localhost:5004/docs/mcp"
    }
  }
}

Environment Variables

Variable Default Description
TRANSPORT http Transport mode: stdio or http
PORT 5004 HTTP server port
SEED_URLS required Documentation sources (see format below)
DB_PATH ./data/mcp-docs.db SQLite database path
INIT_ON_START true Auto-index on startup
CRAWL_MAX_PAGES 1000 Max pages per source
CRAWL_MAX_DEPTH 5 Max crawl depth
CACHE_SIZE 100 LRU cache size
LOG_LEVEL info Log level: debug, info, warn, error
LOG_PATH - Optional log file path
SEARCH_MODE SEMANTIC_ONLY Search mode: FTS_ONLY, SEMANTIC_ONLY, HYBRID
EMBEDDING_MODEL Xenova/all-MiniLM-L6-v2 Embedding model for semantic search
SEMANTIC_TOP_K 20 Top K results for semantic search
HYBRID_FTS_WEIGHT 0.4 FTS weight in hybrid mode (0-1)

SEED_URLS Format

name|url|navigationMode|recrawlIntervalHours
  • navigationMode: sidebar, navbar, or auto
  • recrawlIntervalHours: 0 = never, 24 = daily

Example:

SEED_URLS=TVC Classic|https://products.technia.com/app/docs/tvc-documentation-2025.4.0/tvc/install/index.html|sidebar|0,TIF Cloud|https://forseven.tifdemo.technia.cloud/docs/tif-cloud/Current/main/index.html|auto|24

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured