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 요약 생성 — 모두 자연어를 통해 수행됩니다.

Documentize MCP 작동 방식

1. MCP 클라이언트 연결

Documentize MCP 서버를 Claude Desktop, Cursor, VS Code 또는 MCP 호환 클라이언트에 추가하세요. 한 줄 구성으로 가능합니다.

2. 세션 초기화

클라이언트가 자동으로 초기화 요청을 보내고 세션 ID를 받습니다. 이후 모든 호출은 이 세션을 사용해 추적됩니다(사용량 기반 수익화에 최적).

3. 자연스럽게 물어보기

"Convert this PDF to DOCX" — AI 어시스턴트가 문서와 함께 적절한 도구를 호출합니다. API 문서가 필요하지 않습니다.

4. 결과 가져오기

서버는 비동기적으로 처리하고, 상태를 폴링하며, 변환된 문서 또는 추출된 데이터를 직접 AI 어시스턴트에 전달합니다.

FAQs

Model Context Protocol (MCP)은 Claude와 Cursor와 같은 AI 어시스턴트가 도구를 직접 호출할 수 있게 해주는 오픈 표준입니다. API 코드를 작성하는 대신 자연스럽게 요청하기만 하면 됩니다. Documentize는 AI가 즉시 사용할 수 있는 28개의 문서 처리 도구를 제공하는 MCP 서버를 제공합니다.
상태 저장 모드는 세션별 추적, 사용량 측정 및 클라이언트 격리를 가능하게 하며, 이는 수익 창출에 필수적입니다. 각 클라이언트는 초기화 후 고유한 세션 ID를 받으며, 이를 사용해 사용량에 따라 요금을 부과하거나 속도 제한을 적용하고 고객 활동을 추적할 수 있습니다. AI 클라이언트가 세션 ID를 자동으로 처리합니다.
예! file:// URI(예: file:///home/user/document.pdf)를 사용하세요. MCP 클라이언트가 파일 경로를 전송하면 Documentize가 로컬 파일 시스템에서 직접 읽어들입니다. 클라우드에 업로드해서는 안 되는 민감한 문서에 이상적입니다.
Claude Desktop(에이전트 모드 포함), Cursor IDE, Copilot이 포함된 VS Code, Continue.dev, 그리고 모든 MCP 호환 클라이언트가 작동합니다. 또한 맞춤형 통합을 위한 직접 HTTP 접근도 제공합니다.
Documentize는 자체 호스팅 시 귀하의 인프라에서 실행되며, 클라우드 버전의 경우 EU에 위치한 저희 서버에서 실행됩니다. MCP 서버의 경우, 완전한 데이터 제어를 원한다면 자체 호스팅을 선택하고, 편의를 위해서는 저희 클라우드 API를 사용할 수 있습니다. 문서 데이터는 AI 모델을 교육하는 데 절대 사용되지 않습니다.
Documentize는 처리 엔진을 제공합니다. 인증 미들웨어, 사용량 추적 및 청구를 추가합니다. 상태 기반 세션 모델은 API 키 또는 사용자 계정과 연관시킬 수 있는 Mcp-Session-Id 헤더를 제공합니다. 우리는 상업적 재배포를 위한 라이선스를 제공합니다.

Unlock the Power of Document Management

깊이 계층형 SVG 아키텍처

각 SVG는 배경, 중간, 전경 레이어로 구성되며 Z-인덱스 순서와 종속성 추적이 적용됩니다. AI는 레이어 관계를 관리하고 성능이 낮은 레이어를 자동으로 제거하여 출력이 깔끔하고 일관되게 유지됩니다.

반복적인 SVG 편집

지속적인 AI 채팅을 통해 SVG 디자인을 개선하고 수정합니다.

빠른 벡터 생성

아이콘, 로고, 일러스트레이션을 몇 초 안에 만들 수 있습니다.

간단하고 사용량 기반 요금제

무료 티어

$0
  • 월 50회 문서 작업
  • 전체 28개 MCP 도구
  • 커뮤니티 지원
  • 요청 제한: 분당 5회

프로

$49
  • 월 2,000회 작업
  • 우선 순위 처리 대기열
  • 이메일 지원
  • 속도 제한: 분당 30 요청
  • 사용량 분석 대시보드

엔터프라이즈

맞춤형
  • 무제한 운영
  • 전용 인프라 옵션
  • SLA 보장 (99.9%)
  • SSO 및 팀 관리
  • 맞춤형 도구 개발