MCP Hub
Back to servers

paraph-mcp

MCP server for the Paraph e-signature API that enables AI tools to fill PDF forms and manage electronic signing workflows. It provides tools for template management, document filling, sending signing requests, and tracking signing progress.

glama
Updated
Apr 20, 2026

paraph-mcp

MCP server for the Paraph e-signature API. Lets Claude, Cursor, and other MCP-compatible AI tools fill PDFs and send them for signing.

Install

npx paraph-mcp

Requires a Paraph API key. Get one free at paraph.dev.

Configure

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "paraph": {
      "command": "npx",
      "args": ["-y", "paraph-mcp"],
      "env": {
        "PARAPH_API_KEY": "dg_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add paraph -- npx -y paraph-mcp

Then set PARAPH_API_KEY in your environment.

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "paraph": {
      "command": "npx",
      "args": ["-y", "paraph-mcp"],
      "env": {
        "PARAPH_API_KEY": "dg_your_key_here"
      }
    }
  }
}

Tools

ToolDescription
get_accountGet account info including plan and usage
list_templatesList available PDF templates
get_templateGet template details and field names
create_requestFill a PDF and optionally send for signing
list_requestsList requests with optional status filter
get_requestGet request details and signer progress
cancel_requestCancel a pending signing request

Example prompts

  • "List my templates"
  • "Fill the NDA template with employee_name=Jane Doe and send to jane@example.com for signing"
  • "Show me all pending signing requests"
  • "Cancel request abc-123"

License

MIT

Reviews

No reviews yet

Sign in to write a review