streamable-httpMITupdated 9d ago
A remote Model Context Protocol server that gives any agent document-reading eyes: PDFs and images by URL → markdown (tables preserved) or plain text, with exact cost reporting and hard spend caps.
¿Qué puedes hacer con ocr?
🪙 PennyOCR MCP server
A remote Model Context Protocol server that gives any agent document-reading eyes: PDFs and images by URL → markdown (tables preserved) or plain text, with exact cost reporting and hard spend caps.
Hosted at https://mcp.pennyocr.com — nothing to install:
{
"mcpServers": {
"pennyocr": {
"url": "https://mcp.pennyocr.com",
"headers": { "Authorization": "Bearer pk_live_..." }
}
}
}
Keys are free (first 100 pages free) at pennyocr.com/dashboard.
Clients that can't set headers: https://mcp.pennyocr.com/?key=pk_live_...
Tools
| Tool | Input | Output |
|---|---|---|
read_document |
{url, pages?, output?, max_pages?, max_cost_usd?} |
{content, pages, cost_usd, citations[]} |
estimate_cost |
{url, pages?} |
page count + exact cost — free |
check_balance |
{} |
remaining credits + free-tier allowance — free |
The cost caps refuse before any processing, with the numbers — so autonomous agents can reason about spend ("200 pages, $0.15 — proceed") and can never run past a prepaid balance.
Transport
Streamable HTTP (JSON-RPC 2.0 over POST), stateless. This repo is the complete server —
a single Cloudflare Worker (worker.js) proxying the PennyOCR API.
Pricing: $0.75 per 1,000 pages · pennyocr.com/pricing.txt · Agent onboarding: pennyocr.com/llms.txt
Instalación
Añade ocr a tu cliente. Elige el que uses.
claude mcp add --transport http ocr https://mcp.pennyocr.comcodex mcp add ocr --url https://mcp.pennyocr.com{
"mcpServers": {
"ocr": {
"url": "https://mcp.pennyocr.com"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"ocr": {
"type": "http",
"url": "https://mcp.pennyocr.com"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"ocr": {
"url": "https://mcp.pennyocr.com"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ocr": {
"serverUrl": "https://mcp.pennyocr.com"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
3 herramientas
ocr expone 3 herramientas a un agente conectado.
- read_document
- `{url, pages?, output?, max_pages?, max_cost_usd?}`
- estimate_cost
- `{url, pages?}`
- check_balance
- `{}`
Puntuación
70 / 100
Buena
- Documentación22/25
- Mantenimiento19/25
- Confianza13/20
- Capacidad4/15
- Instalación12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Historial de versiones
| Versiones | Publicada |
|---|---|
| 0.1.0Última | 21 ago 2026 |