mcp-docs
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-docsfind documentation about seed_urls configuration"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Docs Server
MCP server for documentation search with automatic web indexing.
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-docsMCP 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"
}
}
}
}Related MCP server: MCP Web Docs
Quick Start (Local Development)
npm install
npm run buildRunning the Server
STDIO Mode
TRANSPORT=stdio npm run start
# Or for development:
npm run dev:stdioHTTP Mode
TRANSPORT=http npm run start
# Or for development:
npm run dev:httpHTTP 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 mode: |
|
| HTTP server port |
| required | Documentation sources (see format below) |
|
| SQLite database path |
|
| Auto-index on startup |
|
| Max pages per source |
|
| Max crawl depth |
|
| LRU cache size |
|
| Log level: |
| - | Optional log file path |
|
| Search mode: |
|
| Embedding model for semantic search |
|
| Top K results for semantic search |
|
| FTS weight in hybrid mode (0-1) |
SEED_URLS Format
name|url|navigationMode|recrawlIntervalHoursnavigationMode:
sidebar,navbar, orautorecrawlIntervalHours:
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|24This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for querying Forkast documentation
The Needle MCP server enables semantic search on documents stored in files like PDFs, DOCX, and XLSX by connecting AI applications to external data sources. It provides capabilities to create and manage document collections, perform natural language searches on stored content, and retrieve relevant information without requiring exact keyword matches.
MCP server for opencode documentation, generated by doc2mcp.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceA Model Context Protocol (MCP) server that scrapes, indexes, and searches documentation for third-party software libraries and packages, supporting versioning and hybrid search.550 npm1,724MIT
- AlicenseNot gradedqualityAmaintenanceA self-hosted MCP server that crawls, indexes, and searches documentation from any website locally, including private sites requiring authentication. It provides hybrid search capabilities and local embedding generation to maintain privacy while keeping AI assistant knowledge up to date.230 npm1MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that provides full-text search over documentation using Whoosh, enabling AI assistants to find up-to-date, authoritative answers.MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for searching web documentation via sitemap.xml, enabling semantic search across multiple documentation sites using Ollama embeddings.-