mcp-business-docs
Click 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., "@mcp-business-docssearch my invoice ledger for unpaid invoices over $500"
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.
mcp-business-docs
An MCP server that gives Claude Desktop — or any MCP client — read access to an invoice ledger, plus OCR over local documents.
Most published MCP servers expose tools and stop there. This one implements all three primitives, because they do different jobs:
Primitive | Who decides to use it | What it's for |
Tools | the model | Actions it chooses mid-conversation |
Resources | the client/user | Addressable content attached as context |
Prompts | the user | Reusable workflows from a menu |
What's exposed
Tools — search_invoices, get_invoice, vat_summary, ocr_document
Resources — invoice://list (browsable table), invoice://{invoice_id} (one
invoice as markdown, addressable by id)
Prompts — chase_overdue(days), reconcile(invoice_id)
Related MCP server: freeagent-mcp-server
Install into Claude Desktop
pip install -r requirements.txtThen add to claude_desktop_config.json — macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"business-docs": {
"command": "python",
"args": ["-m", "mcp_business_docs.server"],
"env": { "PYTHONPATH": "/absolute/path/to/mcp-business-docs/src" }
}
}
}Restart Claude Desktop. The tools appear under the connectors icon; invoice://list
appears as an attachable resource.
For Claude Code:
claude mcp add business-docs -- python -m mcp_business_docs.serverAdd a demo GIF here. Record Claude Desktop actually calling
search_invoicesand attachinginvoice://list. It's the single most convincing thing this README can contain, and it takes two minutes with any screen recorder.
Tool descriptions are prompt engineering
The model never sees your implementation — only the name, the docstring, and the parameter schema. That makes the docstring the highest-leverage code in the repo. Two habits that measurably help:
State the boundary, not just the capability. search_invoices says it covers
issued invoices only and excludes drafts and credit notes. Most tool-selection
errors come from the model not knowing where a tool stops.
Return errors the model can act on. get_invoice("INV-0000") returns the
known ids rather than raising. A thrown exception ends the turn; a structured error
lets the model correct itself on the next one.
Try it
pip install -r requirements.txt
python -m mcp_business_docs.server # stdio; Ctrl-C to stop
pytest tests/ -qThe store is seeded with four fabricated invoices. Swap store.py for a real
database and nothing in server.py changes — which is the argument for keeping the
protocol layer thin.
Security note
ocr_document reads a local path and returns its text. That text is untrusted:
a scanned document can contain instruction-shaped strings aimed at whatever model
reads it. The tool labels its output as data, but a client that concatenates tool
results into a prompt without delimiting them is still exposed. Treat OCR output as
hostile input, not as context.
Layout
src/mcp_business_docs/
server.py Tools, resources, and prompts
store.py SQLite-backed sample data
tests/ Logic tests that don't need a live clientLicense
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
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 Connectors
Invoicing you drive by talking to your AI: log time, raise invoices and track what's owed via MCP.
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
MCP server for Codat — companies, connections, invoices, bills and financial statements.
Bookkeeping for owner-operated businesses. Query transactions, invoices, and reports.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides double-entry accounting ledger creation, transaction recording, and financial reporting capabilities via MCP.7-
- AlicenseBqualityCmaintenanceMCP server that provides 76 tools for the FreeAgent accounting API, enabling management of invoices, expenses, contacts, projects, timeslips, banking, bills, estimates, credit notes, and accounting reports through natural language.76294MIT
- AlicenseNot gradedqualityAmaintenanceEnables agents to generate, track, and manage invoices via MCP tools, with CLI support for payment tracking and earnings summaries.MIT
- AlicenseAqualityBmaintenanceEnables issuing invoices, proformas, and delivery notices, collecting payments, submitting e-Factura to Romania's SPV, and querying reference data on Oblio.eu through natural language from MCP clients.12MIT
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/mittalmayank842/mcp_business_docs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server