DocMCP: Index the latest doc for LLMs on PostgreSQL using pgvector and expose to AI IDEs
A system for crawling, processing, and querying documentation with AI-powered embedding generation and semantic search capabilities.
Features
- Documentation Crawling: Automatically crawl documentation sites with customizable depth and rate limiting
- Content Processing: Convert HTML to clean Markdown with metadata extraction
- Vector Embeddings: Generate embeddings using AWS Bedrock for semantic searching
- Job Management: Track and manage document processing jobs with detailed progress reporting
- MCP Integration: Built-in MCP tools for AI agent integration
Roadmap
- SPA support: currently the crawler doesnβt support SPAs
- Caching: crawled urls are directly added to the DB
Getting Started (Development Setup)
Prerequisites
- Docker (Install Guide)
- Docker Compose (Install Guide)
- Node.js 16+
- Git
- AWS Account with Bedrock access
- AWS CLI configured with appropriate credentials
Quick Start Steps
Clone the Repository:
git clone https://github.com/visheshd/docmcp.git cd docmcpConfigure Environment:
- Copy the example environment file:
cp .env.example .env - Edit the
.envfile:- Set
DATABASE_URLtopostgresql://postgres:postgres@localhost:5433/docmcp - Configure AWS Bedrock:
- Set
AWS_REGIONto your AWS region (e.g.,us-east-1) - Set
AWS_ACCESS_KEY_IDandAWS_SECRET_ACCESS_KEYwith your AWS credentials - Or ensure your AWS CLI is configured with appropriate credentials
- Set
- Adjust other settings like
LOG_LEVELif needed
- Set
- Copy the example environment file:
Start the Development Environment:
# Make the script executable chmod +x dev-start.sh # Start the development environment ./dev-start.shThis script will:
- Start PostgreSQL with pgvector in a Docker container
- Install project dependencies
- Run database migrations
- Import seed data automatically
- The database will be accessible on port 5433
Add Documentation: Use the
add-docsscript to crawl and process documentation:# Basic usage npm run add-docs -- --url https://example.com/docs --max-depth 3 # With additional options npm run add-docs -- --url https://example.com/docs --max-depth 3 --tags react,frontend --package react --version 18.0.0 --waitAvailable options:
--url: Documentation URL to crawl (required)--max-depth: Maximum crawl depth (default: 3)--tags: Comma-separated tags for categorization--package: Package name this documentation is for--version: Package version (defaults to βlatestβ)--wait: Wait for processing to complete--verbose: Enable detailed logging- See
npm run add-docs -- --helpfor all options
Query Documentation: Once documentation is added, you can query it using the MCP tools. See the βQuerying Documentationβ section below.
Stop the Development Environment:
docker-compose -f docker-compose.dev.yml down
This setup provides a lightweight development environment with just the required PostgreSQL database and pre-loaded seed data. For production deployments or if you prefer a fully containerized setup, see the βProduction Docker Setupβ section below.
Cursor Setup
To use DocMCP with Cursor IDE, youβll need to configure the MCP transport. Add the following configuration to your Cursor settings:
{
"docmcp-local-stdio": {
"transport": "stdio",
"command": "node",
"args": [
"<DOCMCP_DIR>/dist/stdio-server.js"
],
"clientInfo": {
"name": "cursor-client",
"version": "1.0.0"
}
}
}
Replace <DOCMCP_DIR> with the absolute path to your DocMCP installation directory.
For example, if DocMCP is installed in /home/user/projects/docmcp, your configuration would be:
"args": ["/home/user/projects/docmcp/dist/stdio-server.js"]
After adding this configuration, restart Cursor for the changes to take effect.
Architecture
The system consists of several core services:
- CrawlerService: Handles documentation site crawling with robots.txt support
- DocumentProcessorService: Processes documents (HTMLβMarkdown, chunking, embedding)
- JobService: Manages asynchronous processing jobs with detailed status tracking
- ChunkService: Stores and retrieves document chunks with vector search capabilities
- MCP Tools: Agent-friendly interface for adding and querying documentation
Document Processing Pipeline
The DocMCP system processes documentation through the following pipeline:
Documentation Input
- User provides a URL through the
add_documentationMCP tool - System creates a Job record with βpendingβ status
- Job is assigned tags for categorization and future filtering
- User provides a URL through the
Web Crawling (CrawlerService)
- Crawler respects robots.txt restrictions
- Follows links up to specified maximum depth
- Captures HTML content and metadata
- Creates Document records linked to the parent Job
Document Processing (DocumentProcessorService)
- Cleans HTML and converts to structured Markdown
- Extracts metadata (package info, version, document type)
- Establishes parent-child relationships between documents
- Updates Job progress as processing continues
Chunking & Embedding (ChunkService)
- Splits documents into semantic chunks for better retrieval
- Generates vector embeddings using AWS Bedrock
- Stores embeddings in PostgreSQL with pgvector extension
- Preserves chunk metadata and document references
Job Finalization (JobService)
- Updates Job status to βcompletedβ
- Calculates and stores document statistics
- Makes documents available for querying
Querying & Retrieval
- User sends query through
query_documentationMCP tool - System converts query to vector embedding
- Performs similarity search to find relevant chunks
- Returns formatted results with source information
- Supports filtering by tags, status, and metadata
- User sends query through
This pipeline enables efficient storage, processing, and retrieval of documentation with semantic understanding capabilities. All steps are tracked through the job system, allowing detailed progress monitoring and error handling.
Project Structure
docmcp/
βββ prisma/ # Database schema and migrations
β βββ schema.prisma # Prisma model definitions and database configuration
βββ src/
β βββ config/ # Application configuration
β β βββ database.ts # Database connection setup
β βββ generated/ # Generated code (Prisma client)
β βββ services/ # Core service modules
β β βββ crawler.service.ts # Website crawling functionality
β β βββ document.service.ts # Document management
β β βββ document-processor.service.ts # Document processing and transformation
β β βββ job.service.ts # Async job management
β β βββ chunk.service.ts # Document chunking and vector operations
β β βββ mcp-tools/ # MCP integration tools
β β βββ add-documentation.tool.ts # Tool for adding new documentation
β β βββ get-job-status.tool.ts # Tool for checking job status
β β βββ list-documentation.tool.ts # Tool for listing available documentation
β β βββ query-documentation.tool.ts # Tool for querying documentation
β β βββ sample.tool.ts # Example tool implementation
β β βββ index.ts # Tool registry and exports
β βββ types/ # TypeScript type definitions
β β βββ mcp.ts # MCP tool interface definitions
β βββ utils/ # Utility functions
β β βββ logger.ts # Logging utilities
β β βββ prisma-filters.ts # Reusable Prisma filtering patterns
β βββ __tests__/ # Test files
β βββ utils/ # Test utilities
β βββ testDb.ts # Test database setup and teardown
βββ .env # Environment variables
βββ package.json # Project dependencies and scripts
DocMCP
Project Details
- visheshd/docmcp
- Last Updated: 5/12/2025
Recomended MCP Servers
MCP server for accessing YouTube Watch Later playlist
An advanced web browsing server for the Model Context Protocol (MCP) powered by Playwright, enabling headless browser interactions...
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+...
An MCP server providing advanced options analysis through Yahoo Finance, supporting Greeks calculations, strategy evaluation (CCS/PCS/CSP/CC), and risk...
MCP (Model Context Protocol) server - free usdc transfer powered by Coinbase CDP
MCP server for video analysis using Google's Gemini AI
MCP server for the Pylon API
An MCP server for converting GIS filetypes (100+ Downloads)





