Developer Quickstart
Everything you need to integrate DocumentPro into your app, or hand off to an AI coding agent.
API Key
View API docsUse this API key to authenticate your requests when importing documents programmatically.
1. Connect an MCP-capable agent
Point Claude Code, Cursor, Replit Agent, or Lovable at the DocumentPro MCP server. It uses the same API key as the REST API — no separate credential.
Claude Code
claude mcp add --transport http documentpro https://api.documentpro.ai/mcp --header "x-api-key: YOUR_API_KEY"Generic MCP config (Cursor and others)
{
"mcpServers": {
"documentpro": {
"url": "https://api.documentpro.ai/mcp",
"transport": "http",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
}2. Or call the REST API directly
curl -X POST https://api.documentpro.ai/v1/documents \
-H "x-api-key: YOUR_API_KEY" \
-F "file=@invoice.pdf"Full endpoint reference: docs.documentpro.ai
3. Free tier
New accounts start with 200 credits/month, no card required. View plans & add credits.