MCP Server · For AI Agents

Let Your AI Client Call EasyAccessPDF

MCP (Model Context Protocol) connects Claude Code, Cursor, Claude Desktop and other AI clients directly to EasyAccessPDF tools. One membership, every client.

MCP Membership

$19.90 / 32 days

  • MCP endpoint for Claude Code, Cursor, Claude Desktop & more
  • Unlimited document → Markdown conversions
  • Unlimited PDF → JSON / HTML / Text / Annotated PDF
  • Accessibility checks via MCP — veraPDF PDF/UA-1 (ISO 14289-1)
  • Auto-fix tool available — billed per document (2.99 credits = $2.99)
  • Account status tool (plan, expiry, credits)
Get Access — $19.90

Active within minutes of payment.
Extend any time: each purchase adds 32 days.

MCP Membership — Annual Best Value

$199.99 / year

  • Everything in the 32-day plan, for 365 days
  • 12 months for the price of 10 — 2 months free
  • Same unlimited conversions, checks & MCP access
  • Auto-fix billed per document (2.99 credits = $2.99), same as monthly
Get Annual — $199.99

Active within minutes of payment.
No auto-renewal: each purchase adds 365 days, stacking.

Available Tools

eap_convert_to_markdown

Convert a document URL (PDF, Word, PowerPoint, Excel, HTML, EPUB, RTF, ODT, TXT) to clean Markdown. Max 50MB. Included with membership.

eap_get_account_status

Read your plan, membership expiry and remaining PDF credits.

eap_export_pdf

Convert a PDF URL to structured JSON, semantic HTML, plain text or an annotated PDF (detected structure drawn as labeled boxes over each page). Formats: json, html, text, annotated-pdf. Included with membership.

eap_check_pdf

Check a PDF for accessibility compliance — veraPDF PDF/UA-1 (ISO 14289-1) validation. Returns pages, grade (A/B/C/F), issue list and tag coverage. Included with membership.

eap_fix_pdf

Auto-fix a PDF: metadata injection, auto-tagging, veraPDF re-audit. Returns a 24h zip download (tagged PDF + report + manual-review checklist). Billed separately: 1 remediation credit ($2.99) per document — same price with or without membership.

Credits are remediation credits: 1 credit = $1 auto-fix ($2.99 value; packs bring a fix down to $0.67). Membership covers conversions, checks and MCP access — auto-fix always costs 1 credit, for members and non-members alike. Credits never expire. Membership benefits →

AI Draw — Diagrams From Any AI Client

AI Draw turns plain language into clean, editable diagrams — flowcharts, UML, cloud architecture, org charts and more. The AI Draw Pro Pass adds a second MCP server, so Claude Code, Cursor and Claude Desktop can create and manage diagrams directly — no browser needed. Free tier: 3 diagrams a day, no account, at AI Draw.

create_diagram

Describe a diagram in plain language — a 5-step PDF review workflow, sequence diagram of a user login flow — and get a real draw.io diagram back, ready to open and edit in AI Draw.

list_diagrams

List the diagrams saved in your AI Draw workspace.

get_diagram

Fetch a saved diagram by ID — continue from where you left off in any AI client.

AI Draw Pro Pass — $9.90 / 30 days, bought separately from MCP Membership. Your access code arrives by email after checkout; it becomes the Bearer token below. Get a Pro Pass →

Connection Details — AI Draw

Server URL https://aidraw.easyaccesspdf.com/api/mcp

Transport Streamable HTTP

Auth Bearer <ACCESS_CODE> — separate server from the document tools above

Claude Code

claude mcp add --transport http ai-draw \
  https://aidraw.easyaccesspdf.com/api/mcp \
  --header "Authorization: Bearer <ACCESS_CODE>"

Replace <ACCESS_CODE> with your AI Draw Pro Pass code. Cursor / Claude Desktop: same URL with header Authorization: Bearer <ACCESS_CODE>. Full AI Draw guide →

Setup — 3 Steps

  1. Subscribe above. Membership is tied to your EasyAccessPDF account email.
  2. Create an application password: open Your Profile → Application Passwords, name it (e.g. “claude-code”), click Add New Application Password, copy it.
  3. Add the server to your AI client (configs below), restart the client, done.

Connection Details

Server URL https://easyaccesspdf.com/wp-json/easy/v1/mcp

Transport Streamable HTTP

Auth HTTP Basic — your account email + application password

1. Build the Basic token

printf '[email protected]:xxxx xxxx xxxx xxxx xxxx xxxx' | base64

Email + colon + the application password from step 2. The output is your <BASE64> token.

2A. Claude Code

claude mcp add --transport http easyaccesspdf \
  https://easyaccesspdf.com/wp-json/easy/v1/mcp \
  --header "Authorization: Basic <BASE64>"

2B. Cursor / Claude Desktop

{
  "mcpServers": {
    "easyaccesspdf": {
      "url": "https://easyaccesspdf.com/wp-json/easy/v1/mcp",
      "headers": {
        "Authorization": "Basic <BASE64>"
      }
    }
  }
}

Cursor: Settings → MCP → Add server. Claude Desktop: claude_desktop_config.json. Restart the client after saving.

2C. Codex (OpenAI CLI)

Register the server, then add the auth header. Run:

codex mcp add easyaccesspdf \
  --url https://easyaccesspdf.com/wp-json/easy/v1/mcp

Then open ~/.codex/config.toml and add the header to the server block:

[mcp_servers.easyaccesspdf]
url = "https://easyaccesspdf.com/wp-json/easy/v1/mcp"
http_headers = { "Authorization" = "Basic <BASE64>" }

Same <BASE64> token as step 1 (email + colon + application password, base64-encoded). Verify with codex mcp listeasyaccesspdf should show 5 tools.

Fine Print