DocuForge Server
FreeNot checkedEnables AI agents to create, edit, and export IEEE research papers as PDFs, with citation management and cloud hosting capabilities via MCP.
About
Enables AI agents to create, edit, and export IEEE research papers as PDFs, with citation management and cloud hosting capabilities via MCP.
README
AI-powered document creation, editing, and PDF generation via MCP (Model Context Protocol). DocuForge allows AI agents, IDEs, and user-facing dashboards to programmatically orchestrate the creation of complex documents (specifically tailored for IEEE Research Papers), compile them to PDFs via Puppeteer, and host them.
🚀 Features Added in this Project
DocuForge has been heavily upgraded with production-ready features tailored for academic and professional document workflows:
- IEEE Research Paper Pipeline: Full support for formatting documents into the official IEEE template (two-column, justified, specialized Abstract/Index Terms, and Reference sections).
- Citation Management: Native support for BibTeX importing/exporting, and inline citation marker resolution (e.g.
[cite:jones2023]auto-converts to[1]with an aggregated References list). - SQLite Persistence: Transitioned from purely in-memory storage to a production-ready SQLite database for documents, citations, and versions.
- Cloudinary Asset Hosting: Automatically uploads generated PDFs to Cloudinary when API keys are provided, returning public URLs instead of local file paths.
- Remote MCP via HTTP/SSE: Run the MCP server remotely behind an Express REST API with token authentication, allowing secure remote integration with clients like Claude Desktop.
- Multi-stage Docker Builds: Optimized
Dockerfileanddocker-compose.ymlfor running the REST API and MCP services side-by-side in production. - VS Code Extension: A functional VS Code extension bundled into the repository for IDE integration.
🤖 Quick Start for Claude Desktop (Local MCP)
Want to give Claude (or Cursor) the ability to autonomously format IEEE papers, manage citations, and export PDFs? You can run DocuForge directly via NPM!
1. Connect to Claude Desktop
Open your Claude Desktop configuration file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - Mac:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the docuforge tool to your mcpServers list and add your own Gemini API key!
{
"mcpServers": {
"docuforge": {
"command": "npx",
"args": [
"-y",
"@docuforge-mcp/mcp-server"
],
"env": {
"STORAGE_TYPE": "sqlite",
"GEMINI_API_KEY": "your_gemini_api_key_here"
}
}
}
}
2. Start Creating!
Restart Claude Desktop. You will see a plug icon indicating the tools are loaded! You can now type:
"Create a new IEEE format research paper about Neural Networks, add a few sections, and export it to a PDF."
🛠 Local Development & Dashboard
If you want to run the full dashboard and REST API locally:
# Run the local REST API
pnpm dev:api
# In a new terminal, run the React frontend dashboard
cd packages/dashboard
pnpm dev
☁️ Cloud Deployment (Render)
This repository includes a render.yaml Blueprint file, making it extremely easy to deploy to Render.
- Push this code to your GitHub repository.
- Sign in to Render and click New+ -> Blueprint.
- Connect your GitHub repository.
- Render will automatically detect the
render.yamlfile and provision the web services. - Set your secret environment variables (
MCP_API_KEY,JWT_SECRET,CLOUDINARY_*) in the Render dashboard for the service.
📦 NPM Packages
DocuForge is published on NPM and split into several modular packages:
- @docuforge-mcp/core: Document/citation models, SQLite storage layer, and IEEE rendering engine.
- @docuforge-mcp/pdf-engine: Puppeteer-based HTML-to-PDF compilation.
- @docuforge-mcp/ai-integration: Gemini LLM wrapper for autonomous document improvements.
- @docuforge-mcp/mcp-server: Registers 9+ core MCP tools (e.g.
create_ieee_paper,import_bibtex,export_pdf).
🏗 System Architecture
The overarching monorepo also includes web-facing functionality:
@docuforge-mcp/rest-api: Express app serving the REST endpoints and the MCP SSE/mcpproxy.@docuforge-mcp/dashboard: Vite + React frontend.docuforge-vscode: VS Code extension client.
🧪 Testing
The repository features comprehensive testing via Vitest, encompassing unit tests, citation integration tests, and HTTP endpoint verification.
pnpm test
📄 License
MIT
Installing DocuForge Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Ramanand-tomar/Docuforge-mcp-serverFAQ
Is DocuForge Server MCP free?
Yes, DocuForge Server MCP is free — one-click install via Unyly at no cost.
Does DocuForge Server need an API key?
No, DocuForge Server runs without API keys or environment variables.
Is DocuForge Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install DocuForge Server in Claude Desktop, Claude Code or Cursor?
Open DocuForge Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare DocuForge Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
