BizDesk MCP
Provides structured, read-mostly access to small-business back-office data including customers, invoices, and account notes, allowing Claude to query overdue invoices, revenue summaries, and more.
README
<p align="center"><img src="./assets/banner.svg" alt="mcp-business-server" width="1000"/></p>
<p align="center"> <img src="https://img.shields.io/badge/Python-3.11+-3776AB?logo=python&logoColor=white" alt="Python"/> <img src="https://img.shields.io/badge/MCP-FastMCP-1f6feb" alt="MCP"/> <img src="https://img.shields.io/badge/works_with-Claude_Desktop_·_Claude_Code-D97757?logo=anthropic&logoColor=white" alt="Claude"/> <img src="https://img.shields.io/badge/License-MIT-green" alt="MIT"/> </p>
✅ Verified end-to-end on Windows with local Ollama (
llama3.1,num_ctx=8192) — every command below is from a real run.
BizDesk MCP is a Model Context Protocol server that gives Claude (or any
MCP client) structured, read-mostly access to a small-business back office:
customers, invoices, and account notes. Ask Claude "who owes me money?" and
it calls overdue_invoices() instead of guessing.
MCP is how AI assistants get real hands on real business data — and this repo is the pattern I use for client systems, shrunk to a clean, runnable example.
What it exposes
| Kind | Name | What Claude can do with it |
|---|---|---|
| tool | list_customers(status) |
enumerate active/churned accounts |
| tool | overdue_invoices(min_days_overdue) |
fetch late invoices, most overdue first |
| tool | revenue_summary(year) |
monthly paid revenue + top customer |
| tool | add_note(customer_name, note) |
append a timestamped account note |
| resource | bizdesk://customers/{name} |
full customer card (profile + invoices + notes) |
Design choices worth copying: tools return structured rows, not prose;
the only write path (add_note) is append-only; and the server ships
instructions so the model knows the house rules before it calls anything.
Quickstart
pip install -r requirements.txt
python seed.py # creates bizdesk.db (8 customers, ~50 invoices)
Claude Desktop — add to claude_desktop_config.json (see examples/):
{ "mcpServers": { "bizdesk": { "command": "python", "args": ["/abs/path/server.py"] } } }
Claude Code —
claude mcp add bizdesk -- python /abs/path/server.py
Restart the client, then try: "Which invoices are more than 30 days overdue,
and draft a polite reminder for the worst one?" — watch it chain
overdue_invoices → bizdesk://customers/... → a grounded draft.
Point it at real data
bizdesk.db is plain SQLite. Swap the queries in server.py for your
Postgres/Airtable/QuickBooks layer and the MCP surface stays identical — the
client never knows the backend changed. That's the point of the protocol.
<p align="center">Built by <a href="https://github.com/syedahmad0786">Ahmad Bukhari</a> — AI & Automation Architect · <i>agentic systems that run real businesses, not just demos</i></p>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.