आपके AI सहायक के लिए दस्तावेज़ प्रोसेसिंग सुपरपावर

Connect AI agents to Documentize with MCP

The Documentize MCP server exposes all document processing capabilities as tools for AI agents and LLM clients — convert, merge, extract, sign, and more, directly from Claude Desktop, VS Code Copilot, Cursor, or any MCP-compatible host.

⚡ Endpoint

The MCP server runs over Streamable HTTP at:

https://api.documentize.app/mcp

The server uses stateful sessions. After the initial initialize request the server returns an Mcp-Session-Id header; include it in every subsequent request. MCP clients handle this automatically.

🔌 Connect from Claude Desktop

Add the server to claude_desktop_config.json (%APPDATA%\Claude\ on Windows, ~/Library/Application Support/Claude/ on macOS):

{
  "mcpServers": {
    "documentize": {
      "type": "http",
      "url": "https://api.documentize.app/mcp"
    }
  }
}

Restart Claude Desktop. The Documentize tools will appear in the tool list.

🔌 Connect from VS Code (GitHub Copilot)

Create .vscode/mcp.json in your workspace (or add to User Settings):

{
  "servers": {
    "documentize": {
      "type": "http",
      "url": "https://api.documentize.app/mcp"
    }
  }
}

Open GitHub Copilot Chat, switch to Agent mode, and click the Tools button — Documentize tools will be listed there.

🔌 Connect from Cursor / Cline

In Cursor, open Settings → MCP and add a new server:

{
  "name": "documentize",
  "type": "http",
  "serverUrl": "https://api.documentize.app/mcp"
}

Cline users can add the same entry under MCP Servers in its settings panel.

⚙️ How tasks work

All processing tools are asynchronous. Each call starts a background job and returns a JSON object with a folderName field — that is your task ID.

  1. Call a processing tool (e.g. ConvertDocument) → receive a task ID.
  2. Call GetTaskStatus with that task ID and poll until statusCode is 200.
  3. Use the downloadURL from the status response to retrieve the result.
// 1. Start a task
ConvertDocument(fileUrl: "https://example.com/report.pdf",
                inputType: "pdf", outputType: "docx")
// → { "folderName": "abc123", "statusCode": 202 }

// 2. Poll
GetTaskStatus(taskId: "abc123")
// → { "statusCode": 200, "downloadURL": "https://..." }

Use GetNextAppSuggestions after any operation to get recommended follow-up tools based on the output format.

🧰 Available Tools

Document Operations

  • ConvertDocument — Convert between PDF, DOCX, PPTX, HTML, JPG, PNG, and more.
  • MergeDocuments — Combine multiple files into a single document.
  • SplitDocument — Split a PDF by page ranges, bookmarks, or fixed size.
  • CompressDocument — Reduce PDF file size (low / medium / high).
  • RotateDocument — Rotate all or selected pages by 90°, 180°, or 270°.
  • ResizeDocument — Resize PDF pages to A4, Letter, A3, etc.
  • RemovePages — Delete specific pages from a PDF.

Security

  • LockDocument — Encrypt a PDF with a password.
  • UnlockDocument — Remove a password from a protected PDF.
  • SignDocument — Digitally sign a document.
  • VerifySignature — Verify existing digital signatures.

Content Extraction

  • ExtractText — Pull all text from a document (Pure or Raw mode).
  • ExtractImages — Export all embedded images.
  • ExtractMetadata — Read author, title, creation date, keywords, etc.
  • ExtractFormData — Export data from fillable PDF form fields.
  • ParseDocument — Parse annotations, bookmarks, tables, and more.
  • SearchInDocument — Find text occurrences inside a document.
  • MakeSearchable — Add a text layer to a scanned PDF via OCR.
  • RunOcr — Run OCR on a scanned file or image to produce a searchable PDF.

Form & Structure

  • FlattenDocument — Flatten form fields and annotations (make non-editable).
  • AddTable — Embed a table from an Excel or CSV file into a PDF.
  • AddToc — Add a table of contents to a PDF based on its headings.

AI-Powered

  • GenerateTableOfContents — AI-structured TOC from document headings.
  • GenerateAbstract — Summarize a document (academic / professional / casual style).
  • GenerateChecklist — Extract tasks, requirements, or compliance items from a document.
  • AnalyzeResume — Extract, analyze, or compare a CV against a job description.
  • ChatWithDocument — Ask questions about document content (RAG).
  • GenerateSvg — Create an SVG illustration from a text prompt.
  • AddIllustrations — Generate AI illustrations and embed them in a document.

Status & Utility

  • GetTaskStatus — Check task progress; returns download link when ready.
  • GetNextAppSuggestions — Get recommended follow-up operations for a given output.

📋 Notes

  • File sources must be public URLs accessible from the server (no local paths).
  • For MergeDocuments, pass file URLs as a comma-separated string.
  • Status codes: 202/203 = still processing, 200 = done, 500 = error.
  • MCP protocol version reported by the server: 2025-11-25.

Quick Reference

MCP Endpoint

https://api.documentize.app/mcp

claude_desktop_config.json

{
  "mcpServers": {
    "documentize": {
      "type": "http",
      "url": "https://api.documentize.app/mcp"
    }
  }
}

.vscode/mcp.json

{
  "servers": {
    "documentize": {
      "type": "http",
      "url": "https://api.documentize.app/mcp"
    }
  }
}

Key Facts

  • Protocol: MCP 2025-11-25 (Streamable HTTP)
  • Sessions: stateful — Mcp-Session-Id header required after init
  • Tasks are async — poll GetTaskStatus for the download link
  • All file inputs must be public URLs

Claude, Cursor, या किसी भी MCP-संगत क्लाइंट को 28+ दस्तावेज़ टूल्स से जोड़ें। परिवर्तित करें, संकुचित करें, साइन करें, टेक्स्ट निकालें, OCR चलाएँ, और AI सारांश बनाएं — सभी प्राकृतिक भाषा के माध्यम से।

डॉक्यूमेंटाइज़ MCP कैसे काम करता है

1. अपने MCP क्लाइंट को कनेक्ट करें

Documentize MCP सर्वर को Claude Desktop, Cursor, VS Code, या किसी भी MCP-संगत क्लाइंट में जोड़ें। केवल एक पंक्ति का कॉन्फ़िगरेशन।

2. सत्र प्रारंभ करें

आपका क्लाइंट स्वचालित रूप से एक प्रारंभिक अनुरोध भेजता है और एक सत्र ID प्राप्त करता है। सभी बाद के कॉल इस सत्र का उपयोग ट्रैकिंग के लिए करते हैं (उपयोग-आधारित मुद्रीकरण के लिए उत्तम)।

3. स्वाभाविक रूप से पूछें

"इस PDF को DOCX में बदलें" — आपका AI सहायक आपके दस्तावेज़ के साथ उपयुक्त टूल को कॉल करता है। API दस्तावेज़ की आवश्यकता नहीं।

4. परिणाम प्राप्त करें

सर्वर असिंक्रोनस रूप से प्रोसेस करता है, स्थिति की जाँच करता है, और परिवर्तित दस्तावेज़ या निकाले गए डेटा को सीधे आपके एआई सहायक को वितरित करता है।

FAQs

मॉडल कॉन्टेक्स्ट प्रोटोकॉल (MCP) एक खुला मानक है जो क्लॉड और कर्सर जैसे AI सहायक को सीधे टूल्स को कॉल करने की अनुमति देता है। API कोड लिखने के बजाय, आप बस स्वाभाविक रूप से पूछते हैं। Documentize 28 दस्तावेज़ प्रोसेसिंग टूल्स के साथ एक MCP सर्वर प्रदान करता है जिसे आपका AI तुरंत उपयोग कर सकता है।
स्टेटफ़ुल मोड प्रति सत्र ट्रैकिंग, उपयोग मीटरिंग, और क्लाइंट अलगाव को सक्षम करता है — जो मुद्रीकरण के लिए आवश्यक है। प्रारंभ करने के बाद प्रत्येक क्लाइंट को एक अद्वितीय सत्र ID मिलती है, जिसका उपयोग आप उपयोग के आधार पर बिलिंग, गति सीमा लागू करने, या ग्राहक गतिविधि को ट्रैक करने के लिए कर सकते हैं। आपका AI क्लाइंट स्वचालित रूप से सत्र ID को संभालता है।
हां! file:// URIs (उदाहरण के लिए, file:///home/user/document.pdf) का उपयोग करें। आपका MCP क्लाइंट फ़ाइल पाथ भेजता है, और Documentize इसे सीधे आपके स्थानीय फ़ाइल सिस्टम से पढ़ता है। यह संवेदनशील दस्तावेज़ों के लिए आदर्श है जिन्हें क्लाउड पर अपलोड नहीं किया जाना चाहिए।
Claude Desktop (एजेंट मोड के साथ), Cursor IDE, VS Code साथ Copilot, Continue.dev, और कोई भी MCP‑संगत क्लाइंट। हम कस्टम इंटीग्रेशन के लिए सीधे HTTP एक्सेस भी प्रदान करते हैं।
Documentize स्वयं-होस्ट किए जाने पर आपके अपने इन्फ्रास्ट्रक्चर पर चलती है, या क्लाउड संस्करण के लिए हमारे यूरोपीय सर्वरों पर। MCP सर्वर के लिए, आप चुनते हैं: पूर्ण डेटा नियंत्रण के लिए स्वयं-होस्ट, या सुविधा के लिए हमारे क्लाउड API का उपयोग। किसी भी दस्तावेज़ डेटा को एआई मॉडल को प्रशिक्षित करने के लिए कभी उपयोग नहीं किया जाता।
Documentize प्रोसेसिंग इंजन प्रदान करता है। आप प्रमाणीकरण मिडलवेयर, उपयोग ट्रैकिंग और बिलिंग जोड़ते हैं। स्टेटफुल सत्र मॉडल आपको Mcp-Session-Id हेडर देता है जिसे आप API कुंजियों या उपयोगकर्ता खातों से जोड़ सकते हैं। हम व्यावसायिक पुनर्वितरण के लिए लाइसेंसिंग प्रदान करते हैं।

Unlock the Power of Document Management

गहराई-परत वाला SVG आर्किटेक्चर

प्रत्येक SVG में बैकग्राउंड, मिडग्राउंड और फ़ोरग्राउंड लेयर्स होते हैं जिनका Z-इंडेक्स क्रम और निर्भरता ट्रैकिंग होता है। AI लेयर संबंधों का प्रबंधन करता है और आउटपुट को साफ़ और सुसंगत रखने के लिए कम प्रदर्शन वाली लेयर्स को स्वचालित रूप से हटा देता है।

आवर्ती SVG संपादन

लगातार AI चैट के माध्यम से SVG डिज़ाइनों को सुधारें और संशोधित करें।

त्वरित वेक्टर निर्माण

सेकंड में आइकन, लोगो और चित्र बनाएं।

सरल, उपयोग-आधारित मूल्य निर्धारण

नि:शुल्क स्तर

$0
  • 50 दस्तावेज़ संचालन/महीना
  • सभी 28 MCP टूल्स
  • समुदाय समर्थन
  • दर सीमा: 5 अनुरोध/मिनट

प्रो

$49
  • 2,000 संचालन/माह
  • प्राथमिकता प्रसंस्करण कतार
  • ईमेल समर्थन
  • दर सीमित: 30 अनुरोध/मिनट
  • उपयोग विश्लेषण डैशबोर्ड

उद्यम

कस्टम
  • असीमित संचालन
  • समर्पित बुनियादी ढांचा विकल्प
  • एसएलए गारंटी (99.9%)
  • SSO & टीम प्रबंधन
  • कस्टम टूल विकास