Skip to content

MCP Server

Orim provides a native Model Context Protocol (MCP) server, allowing AI assistants to generate PDFs and capture screenshots directly.

  • Claude Desktop — Anthropic’s desktop app
  • Claude Code — CLI for developers
  • Cursor — AI-first code editor
  • Windsurf — Codeium’s AI IDE
  • Any MCP-compatible client

Get a free API key — 20 credits/month, no credit card.

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
"mcpServers": {
"orim": {
"type": "http",
"url": "https://api.orim.io/mcp",
"headers": {
"X-API-Key": "sk_live_YOUR_API_KEY"
}
}
}
}

After adding the config, restart your AI client. Orim tools will be available immediately.

Convert HTML to PDF.

ParameterTypeDefaultDescription
htmlstringrequiredHTML content to convert
formatstring"A4"Page format: A4, Letter, Legal
landscapebooleanfalseLandscape orientation

Convert a webpage URL to PDF.

ParameterTypeDefaultDescription
urlstringrequiredURL to convert
formatstring"A4"Page format: A4, Letter, Legal
landscapebooleanfalseLandscape orientation

Capture a webpage screenshot.

ParameterTypeDefaultDescription
urlstringrequiredURL to capture
widthnumber1280Viewport width
heightnumber720Viewport height
fullPagebooleanfalseCapture full scrollable page
formatstring"png"Image format: png, jpeg, webp

Check your API usage and remaining credits.

Once configured, just ask your AI:

  • “Generate a PDF invoice for customer John Doe, $500 for consulting services”
  • “Take a screenshot of https://github.com
  • “Convert this HTML table to PDF in landscape format”
  • “Check my Orim API usage”

The AI will use Orim tools automatically and return download links.

  1. You ask your AI to generate a PDF or screenshot
  2. AI calls the appropriate Orim MCP tool
  3. Orim processes the request using Chromium
  4. AI receives a temporary download URL (valid 10 minutes)
  5. AI shares the link with you
  • Verify your API key is correct
  • Restart your AI client after config changes
  • Check the config file path matches your OS