aidocx-mcp-server
v0.4.1
Published
MCP server for AiDocX - Create, upload, and manage documents (contracts, proposals, quotations, resumes, reports) from AI assistants
Maintainers
Readme
aidocx-mcp-server
MCP (Model Context Protocol) server for AiDocX — AI-powered document management platform.
Create, upload, and manage business documents directly from AI assistants like Claude Desktop, Claude Code, and other MCP-compatible clients.
Supported document types: Contracts, Proposals, Quotations, Resumes, Business Plans, Reports, Official Letters, Purchase Orders, Manuals/SOPs, and more.
Quick Start
1. Get API Keys
Sign up at app.aidocx.ai and go to Settings → API Keys to generate your credentials.
2. Configure Your AI Client
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"aidocx": {
"command": "npx",
"args": ["aidocx-mcp-server"],
"env": {
"AIDOCX_API_KEY": "ak_xxxxxxxx",
"AIDOCX_API_SECRET": "your_secret_here"
}
}
}
}Claude Code
claude mcp add aidocx \
-e AIDOCX_API_KEY=ak_xxxxxxxx \
-e AIDOCX_API_SECRET=your_secret_here \
-- npx aidocx-mcp-server3. Start Using
Ask your AI assistant:
- "NDA 계약서 작성해줘" (Draft an NDA contract)
- "견적서 만들어줘" (Create a quotation)
- "이력서 작성해줘" (Create a resume)
- "제안서 만들어줘" (Create a proposal)
- "내 문서 목록 보여줘" (Show my documents)
- "이 문서 AI로 분석해줘" (Analyze this document with AI)
Available Tools
| Tool | Description |
|------|-------------|
| create_document | Create a new document (contract, proposal, quotation, resume, report, etc.) — auto-generates PDF |
| upload_document | Upload a PDF or Office file (DOC, DOCX, HWP, XLS, XLSX, PPT, PPTX) |
| list_documents | List documents with optional pagination |
| get_document | Get document details and extracted text |
| delete_document | Delete a document |
| list_folders | List folders |
| create_folder | Create a new folder |
| delete_folder | Delete a folder (optionally with all contents) |
| search_documents | Search documents with text query, date filters, and pagination |
| analyze_document | AI-powered document analysis with risk score and insights |
Document Types
| Type | Examples |
|------|----------|
| contract | Service agreements, NDAs, employment contracts |
| proposal | Project proposals, consulting proposals |
| quotation | Price quotes, cost estimates |
| plan | Project plans, strategy documents |
| business-plan | Investor pitch business plans |
| report | Analysis reports, audit reports |
| official-letter | Official letters, notices, requests |
| resume | Resumes, CVs, cover letters |
| purchase-order | Purchase orders, delivery notes |
| manual | SOPs, user manuals, guides |
Workflow
- AI generates a document → calls
create_document→ PDF is created in AiDocX - Open the URL returned by the tool to view, download, or share
- For contracts: open the signing workspace URL to place signature fields and send to signers
Environment Variables
| Variable | Description |
|----------|-------------|
| AIDOCX_API_KEY | API key (starts with ak_) |
| AIDOCX_API_SECRET | API secret (64-char hex) |
