omp.sh
Configure omp.sh to use docpenny’s MCP tools for PDF generation.
Prerequisites
- A docpenny API key (create one in Settings → API Keys in the dashboard)
Configuration
Add to your project’s .omp/mcp.json:
{
"mcpServers": {
"docpenny": {
"type": "streamable-http",
"url": "https://mcp.docpenny.com/mcp",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
} For user-level configuration, use ~/.omp/agent/mcp.json with the same structure.
omp.sh also accepts
"type": "http"if you prefer, but"type": "streamable-http"is the canonical value.
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. |
Config not found | Ensure the file is at .omp/mcp.json in your project root, or ~/.omp/agent/mcp.json for user-level config. |