MCP DocGraph
Provides integration with OpenAI's LLM API for generating entity patterns and answering queries.
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 DocGraphingest all PDFs in my project folder"
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 DocGraph
MCP server for building knowledge graphs from documents.
Ingest PDF/PPTX/DOCX files, transcribe to Markdown, bootstrap domain-specific entity patterns via LLM, and build a JSONL knowledge graph with RAG chunks — all configurable per project.
Quick Start
pipx install .Add to your MCP client config:
{
"mcpServers": {
"docgraph": {
"command": "python",
"args": ["-m", "mcp_docgraph.server"]
}
}
}Set LLM credentials:
export DOCGRAPH_LLM_API_KEY="your-key"
export DOCGRAPH_LLM_PROVIDER="anthropic" # or "openai"Related MCP server: pymupdf4llm-mcp
Tools
Tool | Description |
| Transcribe PDF/PPTX/DOCX → Markdown |
| LLM proposes entity patterns from docs |
| Build knowledge graph + RAG chunks |
| Query graph, get LLM-synthesized answer |
| Check graph integrity |
Workflow
Place documents in a folder
ingest_files→ transcribed Markdownbootstrap_config→ proposedconfig.yaml(review, edit if needed)build_graph→ JSONL nodes, edges, chunksvalidate_graph→ check integrityquery_graph→ ask questions
Design Spec
This server cannot be deployed
Maintenance
Related MCP Connectors
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Hosted MCP server: convert PDFs to clean, LLM-ready Markdown with tables, formulas and OCR.
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
Related MCP Servers
- AlicenseAqualityFmaintenanceAn MCP server that exports PDF documents to markdown format optimized for LLM processing.11BSD 3-Clause

pymupdf4llm-mcpofficial
AlicenseNot gradedqualityCmaintenanceMCP server for exporting PDF to markdown, optimized for LLM consumption.1,390 PyPI71AGPL 3.0- AlicenseAqualityCmaintenanceMCP server that indexes Markdown, Word, HTML, and PDF documents into a SQLite knowledge graph with CJK+Latin full-text search and cross-document reference tracking. Runs drift audits to surface stale policies, conflicting research claims, superseded ADRs, and undocumented code exports.108MIT
- FlicenseNot gradedqualityDmaintenanceA local-first MCP server that transforms crypto whitepapers into a knowledge graph and vector corpus, enabling entity-filtered RAG question answering with optional knowledge graph enrichment.-