npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pgupta1795/mcp-docs

v1.0.1

Published

MCP server for documentation search with web indexing from url

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": "Docs|https://example.com/docs|sidebar|0"
      }
    }
  }
}

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