Cline
Configure Cline to use docpenny’s MCP tools for PDF generation.
Prerequisites
- A docpenny API key (create one in Settings → API Keys in the dashboard)
Configuration
Via UI (recommended)
- Open the Cline MCP Panel in VS Code
- Click Add Server
- Choose Remote as the transport type
- Set the URL to
https://mcp.docpenny.com/mcp - Add header:
x-api-keywith your API key as the value
Via Raw Config
Note: Cline uses
"type": "streamableHttp"for remote Streamable HTTP servers. Omitting the type defaults to the legacy SSE transport.
Cline stores its config in a JSON file (location varies by OS). The relevant section looks like:
{
"mcpServers": {
"docpenny": {
"type": "streamableHttp",
"url": "https://mcp.docpenny.com/mcp",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
} Troubleshooting
| Problem | Solution |
|---|---|
Auth required or 401 | Check your x-api-key value. Keys can be managed in the dashboard. |
Connection refused | Verify the URL is https://mcp.docpenny.com/mcp. |
| Tools not appearing | Ensure the server was added as Remote type, not Command. |
| Wrong transport | If tools fail to load, check "type": "streamableHttp" — "http" defaults to legacy SSE. |