AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Docmole

mcp-vigtu-docmole · by Vigtu

Dig through any documentation with AI - MCP server for Claude, Cursor, and other AI assistants

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add mcp-vigtu-docmole

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-vigtu-docmole)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Docmole? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Docmole

Dig through any documentation with AI

[](https://www.npmjs.com/package/docmole) [](https://opensource.org/licenses/MIT) [](https://bun.sh) [](https://modelcontextprotocol.io)

Docmole is an MCP server that lets you query any documentation site from AI assistants like Claude, Cursor, or any MCP-compatible client. The mole digs through docs so you don't have to.

Features

  • 🔍 Universal docs support — works with any documentation site
  • 🏠 Self-hosted RAG — LanceDB vectors + OpenAI embeddings, no Python needed
  • Zero-setup mode — instant access to Mintlify-powered sites
  • 🧠 Multi-turn conversations — remembers context across questions
  • 🔗 WebFetch compatible — links converted to absolute URLs
  • 🔌 MCP native — works with Claude, Cursor, and any MCP client

Coming soon

  • 🦙 Ollama support — fully local mode, no API keys needed
  • 📄 Generic HTML extraction — support for non-Mintlify documentation sites
  • 🔄 Incremental updates — only re-index changed pages

Installation

To use Docmole, run it directly with bunx (no install needed):

bunx docmole --help

Or install globally:

bun install -g docmole

Works on macOS, Linux and Windows. Requires Bun runtime.

Getting started

Local RAG Mode (any docs site)

Index and query any documentation site. Requires OPENAI_API_KEY.

# One-time setup — discovers pages and builds vector index
bunx docmole setup --url https://docs.example.com --id my-docs

# Start the MCP server
bunx docmole serve --project my-docs

Add to your MCP client:

{
  "mcpServers": {
    "my-docs": {
      "command": "bunx",
      "args": ["docmole", "serve", "--project", "my-docs"]
    }
  }
}

Mintlify Mode (zero setup)

For sites with Mintlify AI Assistant — no API key needed:

bunx docmole -p agno-v2
{
  "mcpServers": {
    "agno-docs": {
      "command": "bunx",
      "args": ["docmole", "-p", "agno-v2"]
    }
  }
}

CLI

Docmole has a built-in CLI for all operations:

# Mintlify mode (proxy to Mintlify API)
docmole -p 

# Local RAG mode
docmole setup --url  --id 
docmole serve --project 
docmole list
docmole stop --project 

Run docmole --help for all options.

How it works

┌─────────────┐     ┌─────────────┐     ┌──────────────────────┐
│ MCP Client  │────▶│   Docmole   │────▶│ Embedded: LanceDB    │
│ (Claude,    │◀────│ MCP Server  │◀────│ Mintlify: API proxy  │
│  Cursor...) │     └─────────────┘     └──────────────────────┘
└─────────────┘

Local RAG Mode: Crawls documentation, generates embeddings with OpenAI, stores in LanceDB. Hybrid search combines semantic and keyword matching.

Mintlify Mode: Proxies requests to Mintlify's AI Assistant API. Zero setup, instant results.

Known Mintlify Project IDs

| Documentation | Project ID | |--------------|------------| | Agno | agno-v2 | | Resend | resend | | Mintlify | mintlify | | Vercel | vercel | | Upstash | upstash | | Plain | plain |

> Find more: Open DevTools → Network tab → use the AI assistant → look for leaves.mintlify.com/api/assistant/{project-id}/message

Configuration

| Environment Variable | Default | Description | |---------------------|---------|-------------| | OPENAI_API_KEY | — | Required for local RAG mode | | DOCMOLE_DATA_DIR | ~/.docmole | Data directory for projects |

Project structure

~/.docmole/
├── projects/
│   └── /
│       ├── config.yaml      # Project configuration
│       └── lancedb/         # Vector database
└── global.yaml              # Global settings

Documentation

See [AGENT.md](./AGENT.md) for detailed documentation including:

  • Architecture details
  • Backend implementations
  • Enterprise deployment guides

Contributing

PRs welcome! See the [contributing guide](./CONTRIBUTING.md) for details.

Acknowledgments

License

The Docmole codebase is under [MIT license](./LICENSE).

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

  • Author: Vigtu
  • Source: Vigtu/docmole
  • License: MIT
  • Homepage: https://www.npmjs.com/package/docmole

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.