@devrobotlabs/visionapi-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@devrobotlabs/visionapi-mcpExtract the invoice numbers and totals from the PDFs in ~/invoices and summarize them."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@devrobotlabs/visionapi-mcp
MCP server for the Vision API. Point Claude Code, Claude Desktop, Cursor or any other MCP host at a folder of scans and ask for the invoices — no integration to write, no API key in generated code, no contract paraphrased from memory.
You: pull the totals out of every invoice in ~/inbox and put them in a CSV
Claude: [vision_analyze × 7]
Done — 7 invoices, 14 credits. Three had no PO number; I left those cells empty.Install
Nothing to install. Add it to your host's config and it runs via npx.
Claude Code — claude mcp add visionapi --env VISION_API_KEY=sk_live_... -- npx -y @devrobotlabs/visionapi-mcp ~/inbox
Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"visionapi": {
"command": "npx",
"args": ["-y", "@devrobotlabs/visionapi-mcp", "/Users/me/inbox"],
"env": { "VISION_API_KEY": "sk_live_..." }
}
}
}Cursor — .cursor/mcp.json, same shape:
{
"mcpServers": {
"visionapi": {
"command": "npx",
"args": ["-y", "@devrobotlabs/visionapi-mcp", "."],
"env": { "VISION_API_KEY": "sk_live_..." }
}
}
}VS Code — .vscode/mcp.json:
{
"servers": {
"visionapi": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@devrobotlabs/visionapi-mcp", "${workspaceFolder}"],
"env": { "VISION_API_KEY": "sk_live_..." }
}
}
}Get a key at app.visionapi.io/dashboard/keys. New accounts get 50 credits, no card.
The host config blocks live in this README rather than in an
examples/directory — a departure from the nine client libraries, and a deliberate one. A snippet that exists only in a README cannot drift from a runnable script nobody runs.
Related MCP server: receiptconverter-mcp
Which directories it can read
Every positional argument is a directory the server may read files from. With none given, the process working directory is the only root — which is the safe default, because MCP hosts launch a stdio server with the project directory as its cwd.
This matters more than it may look. The server holds a live spending credential and runs
with your filesystem permissions, so it can read anything your shell can. Asking it for the raw
text of ~/Documents/passport.jpg is a working way to get that document's contents into a
model's context and into whatever transcript your host keeps. The allowlist is what stops a
confused or manipulated agent doing that by accident.
Paths are resolved with realpath on both sides before being compared, so a symlink inside
an allowed directory cannot point out of it.
--allow-any-path turns the allowlist off entirely. It warns on stderr at startup and you
should have a reason.
Tools
Tool | What it does | Cost |
| Structured fields out of one image or PDF | 1 credit an image, 2 a PDF page |
| Up to 5 plain-language questions about one file | 1 credit an image, 1 a PDF page |
| What is this file? Ranked presets, no extraction | 1 credit per 5 calls |
| The preset catalogue | free |
| Every field one preset returns | free |
| Balance and buckets | free |
| Status/result of a queued task | free |
The three that spend credits are annotated readOnlyHint: false, so a host that auto-approves
read-only tools will still stop and ask before one of them runs.
The catalogue is also exposed as resources — visionapi://presets and
visionapi://presets/{name} — for hosts that prefer them. Tools are the primary surface,
because resource support is uneven across hosts.
Output
Responses are rendered for a model to read, not dumped as JSON. A 37-field invoice preset over
a document that fills twelve of them comes back as a table plus one Not found in this document (25): … line, rather than as twenty-five repetitions of
{"value":null,"confidence":"low"} — three to four times smaller, and easier to act on.
Nothing is lost in the process. Every tool takes a format:
markdown(default) — the rendering above.compact_json— the same information as data, with_not_foundand_low_confidencearrays. For when the agent will parse rather than read.json— the API response verbatim. What to reach for when writing real HTTP code against the contract.
Confidence is printed only when it is not high, so (mid) and (low) stand out and the
common case costs nothing to read.
Long documents
Leave mode at auto. The API kills a synchronous request at 60 seconds; the server then
re-submits it to the queue and polls, reporting progress to your host as it goes. You are
charged once, because the timed-out attempt released its reservation in full.
Pass mode: "async" up front for anything over roughly ten pages, and pages: "1-5" to sample
a long document cheaply — you are charged for selected pages only.
Costs and failures
Failures cost nothing. Every non-2xx releases the credit reservation in full, so a failed call is safe to correct and repeat and there is no cleanup to do. The tool descriptions say so, which is why an agent using this server behaves sensibly after an error instead of either giving up or retrying something that cannot work.
Two errors carry advice that is worth knowing yourself:
Error | What it means |
| Retrying cannot help — the balance does not change on its own. Top up. |
| Your own async tasks are at the plan's cap. It clears when one of them finishes, not on a timer — so sleeping and retrying blocks the very thing you are waiting for. |
Environment
Variable | Required | Purpose |
| for billable tools | Your key. The catalogue tools work without it. |
| no | Override the API base URL. Rarely needed. |
A missing key does not stop the server starting: it warns on stderr, tools/list still works,
and the first billable call returns a message naming the fix. A server that refuses to start
tells the user only that something is broken.
Development
npm install
npm run typecheck
npm test # 37 offline tests — no key, no network
npx @modelcontextprotocol/inspector node ./dist/cli.js ~/some/dirnpm install --no-save ../node to test against a local build of the client. Not
npm install ../node — that rewrites package.json to "file:../node", and that manifest is
what gets published.
Links
MIT licensed.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that lets AI assistants read and visually analyze local documents — PDFs, Excel spreadsheets, CSV files, Word documents, PowerPoint presentations, and images.456MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for ReceiptConverter that allows AI assistants to parse any receipt or invoice image/PDF into structured JSON with a single tool call.16MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that gives your Claude, Cline, or Cursor session the ability to extract text, tables, and metadata from any PDF URL — including scanned PDFs via OCR.MIT
- AlicenseNot gradedqualityBmaintenanceMCP server that extracts clean text, tables, and structured data from documents, images, code, and audio files, supporting 97 formats with OCR, transcription, and code intelligence.MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devrobotlabs/visionapi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server