d365-bc-mcp
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., "@d365-bc-mcpShow me the 10 most recent sales invoices with their totals"
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.
d365-bc-mcp
A read-only MCP server for Dynamics 365 Business Central. It gives Claude Code, Claude Desktop, or any MCP client governed access to live ERP data — customers, items, orders, invoices, and any other BC API entity — without ever being able to change anything.
Built by an IT admin who wanted AI assistance over production ERP data and refused to hand an LLM write access to the general ledger to get it.
Every tool issues GET requests only. Nothing is created, modified, or deleted in Business Central, by construction — there is no code path that issues a write.
Design
Read-only by construction, then again by permission. The server only performs GETs, and the recommended setup also runs under an identity that BC itself restricts to read-only permission sets. Two independent layers; either alone would hold.
Dual auth, auto-selected. Personal use gets delegated device-code auth (BC sees you, your permissions apply). Shared/deployed use gets client-credentials with a dedicated Entra app. Set one env var to switch.
Two transports. stdio for local MCP clients; stateless Streamable HTTP (
--http) for remote/shared use, with optional bearer-key protection.Boring dependencies. TypeScript,
@modelcontextprotocol/sdk, MSAL, Express, Zod. No framework, ~2.5k lines, readable in one sitting.
Mode | When | How it authenticates |
|
| Delegated — you sign in once as yourself; BC sees your user and your BC permissions apply |
|
| Service-to-service — a dedicated Entra app with its own (read-only) BC permission set |
Related MCP server: Microsoft Business Central MCP Server
Prerequisites
Node.js 20+
A Business Central online tenant and an Entra app registration:
Device-code mode: a public-client app registration — Authentication → Allow public client flows: Yes, plus the delegated
Dynamics 365 Business Central / user_impersonationAPI permission. If your org already has one (many BC integrations create one), you can reuse it.Client-credentials mode: see Service-to-service setup below.
Quick start (device code)
git clone https://github.com/vinaybabuv/d365-bc-mcp
cd d365-bc-mcp
npm install
npm run build
cp .env.example .env # then edit: tenant ID, client ID, environment, companySign in once, then verify the pipe end to end:
node --env-file=.env dist/index.js login
node --env-file=.env dist/index.js testlogin runs the device-code flow (open the URL, enter the code) and caches tokens at %LOCALAPPDATA%\d365-bc-mcp\token-cache.json (override with BC_TOKEN_CACHE) — refresh is silent from then on. test lists companies and three sample customers to prove auth, environment, and company selection all work.
Hook up to Claude Code
claude mcp add bc \
--env BC_TENANT_ID=<your-tenant-guid> \
--env BC_CLIENT_ID=<your-app-client-id> \
--env BC_ENVIRONMENT=Production \
--env "BC_COMPANY_NAME=CRONUS USA, Inc." \
-- node /path/to/d365-bc-mcp/dist/index.js(Add --scope user to make it available in every project.)
Hook up to Claude Desktop
Add to claude_desktop_config.json (%APPDATA%\Claude\ on Windows, ~/Library/Application Support/Claude/ on macOS) under mcpServers:
{
"mcpServers": {
"business-central": {
"command": "node",
"args": ["/path/to/d365-bc-mcp/dist/index.js"],
"env": {
"BC_TENANT_ID": "<your-tenant-guid>",
"BC_CLIENT_ID": "<your-app-client-id>",
"BC_ENVIRONMENT": "Production",
"BC_COMPANY_NAME": "CRONUS USA, Inc."
}
}
}
}Service-to-service setup (for a shared connector)
For a connector that runs without a signed-in user (deployed to a server, used by a team), create a dedicated app registration:
Task 1 — Entra (entra.microsoft.com → App registrations → New):
Single tenant, no redirect URI needed.
Certificates & secrets → New client secret — copy the value immediately.
API permissions → Add → Microsoft APIs → Dynamics 365 Business Central → Application permissions →
API.ReadWrite.All→ Add, then Grant admin consent. (The permission name says ReadWrite, but actual data access is governed by the BC permission set you assign in Task 2 — assign a read-only one.)
Task 2 — Business Central:
In BC, search Microsoft Entra Applications → New.
Paste the app's Application (client) ID, set State = Enabled.
Assign a read-only permission set (e.g.
D365 READplus the specific read sets your data needs). Least privilege is the point: even though the server never writes, the identity it runs as shouldn't be able to.
Then: set BC_CLIENT_ID to the new app's ID and BC_CLIENT_SECRET to the secret. The server switches to client-credentials mode automatically. Verify with node --env-file=.env dist/index.js test.
HTTP mode (remote / shared use)
node --env-file=.env dist/index.js --httpServes stateless Streamable HTTP at http://localhost:3010/mcp (PORT to change), plus GET /healthz. Set MCP_API_KEY to require Authorization: Bearer <key> on every MCP request — do this for anything beyond localhost, and put real TLS in front of anything beyond your machine.
Connect Claude Code to it:
claude mcp add --transport http bc http://localhost:3010/mcp --header "Authorization: Bearer <MCP_API_KEY>"Note on claude.ai custom connectors: claude.ai (Settings → Connectors) requires either an unauthenticated URL or OAuth — it cannot send a static bearer header. To expose this server there, put an OAuth layer in front (Entra ID works; claude.ai supports manually-entered client credentials), or use Microsoft's hosted Business Central MCP server instead. Claude Code and Claude Desktop work fine with the bearer-key approach.
Tools
All list tools accept top (default 20, max 100) and skip, and return { total_count, returned, has_more, records }.
Tool | What it does |
| Companies visible to this connection |
| Customers; |
| One customer by number or GUID |
| Items; |
| Vendors; |
| Orders; by customer, status, date range |
| One order incl. lines, by number or GUID |
| Invoices; by customer, status, dates, |
| One invoice incl. lines, by number or GUID |
| Read-only escape hatch: GET any BC API entity ( |
Environment variables
Var | Required | Notes |
| yes | Entra tenant GUID |
| yes | App registration client ID |
| no | Setting it switches to client-credentials mode |
| no | Explicit override: |
| no | BC environment name, default |
| no | Working company; auto-selected if the identity sees exactly one |
| no | Token cache path (device-code mode) |
| no | HTTP mode: require this bearer token |
| no | HTTP mode port, default 3010 |
Security notes
No secrets in code or in this repo — configuration is environment-only, and
.env/ token caches are git-ignored.Delegated mode inherits the signed-in user's BC permissions; it can never see more than that user could.
Client-credentials mode should run under a BC permission set that is read-only, so the transport-level GET-only guarantee is backed by an authorization-level one.
The HTTP transport is stateless and unauthenticated by default for localhost development; set
MCP_API_KEY(and TLS) before exposing it anywhere else.
License
MIT
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 Servers
- Alicense-qualityDmaintenanceA read-only MCP server that enables AI assistants to query Odoo instances via XML-RPC, supporting search, read, count, and field inspection without requiring custom modules.1Mozilla Public 2.0
- AlicenseAqualityCmaintenanceModel Context Protocol (MCP) server for Microsoft Dynamics 365 Business Central. Provides AI assistants with direct access to Business Central data through properly formatted API v2.0 calls.6228MIT
- AlicenseAqualityCmaintenanceMCP server for Microsoft Dynamics 365 Business Central that enables AI assistants to query and manage Business Central data via full CRUD operations.622MIT
- Alicense-qualityCmaintenanceRead-only MCP server for Omie ERP, enabling AI assistants to query financial data, accounts payable/receivable, bank reconciliation, invoices, and movements via natural language.1MIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Read-only MCP server for wafergraph.com's semiconductor & AI supply-chain data: 30 tools, no auth.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
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/vinaybabuv/d365-bc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server