How to connect Claude Code to VerifyPDF MCP
Recommended for developersAnthropic’s CLI for Claude. One command adds the server to the current project; add `--scope user` to share it across every project on your machine, or `--scope project` to write a `.mcp.json` you can commit to your team repo.
Install with your VerifyPDF API key (all six tools)
One-line install
claude mcp add --transport http verifypdf https://mcp.verifypdf.com/mcp --header "Authorization: Bearer YOUR_VERIFYPDF_API_KEY" Or commit .mcp.json with an env var (safe for shared repos)
{
"mcpServers": {
"verifypdf": {
"type": "http",
"url": "https://mcp.verifypdf.com/mcp",
"headers": {
"Authorization": "Bearer ${VERIFYPDF_API_KEY}"
}
}
}
} Export VERIFYPDF_API_KEY in your shell. Claude Code expands ${VAR} references at load time, so the secret never lives in source control.
Verify: Open Claude Code in the project and run /mcp. The six VerifyPDF tools appear in the list.