MCP server for Microsoft Dynamics 365 Business Central -- speaks BC's native WebSocket protocol directly
MCP server for Microsoft Dynamics 365 Business Central -- speaks BC's native WebSocket protocol directly. The business mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
Give AI assistants direct access to Microsoft Dynamics 365 Business Central.
Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.
Everything the assistant can do here goes through one of these:
macOS — ~/Library/Application Support/Claude/claude_desktop_config.jsonWindows — %APPDATA%\Claude\claude_desktop_config.jsonLinux — ~/.config/Claude/claude_desktop_config.jsonCard — style** (header on Card pages, factbox, requestPage): fields[] and (for header) actions[]List — style** (lines on Documents, header on List pages, repeater subpages): rows[] and totalRowCountAuto — dismisses license popups on fresh databasesProperty — ValueLanguage — TypeScript / Node 20+Auth — NavUserPassword (OAuth on roadmap)Tools — 12Tests — 284 unit/protocol + 111 integrationVariable — RequiredYou will need 5 environment variables: BC_BASE_URL, BC_USERNAME, BC_PASSWORD, BC_TENANT_ID, BC_APPLICATION_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Business's toolset — macOS, Windows, Linux and 11 more — is a fair guide to whether it matches your workflow. It is maintained by sshadows; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Business's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
| Card | style** (header on Card pages, factbox, requestPage): fields[] and (for header) actions[] |
| List | style** (lines on Documents, header on List pages, repeater subpages): rows[] and totalRowCount |
| Auto | dismisses license popups on fresh databases |
| Property | Value |
| Language | TypeScript / Node 20+ |
| Auth | NavUserPassword (OAuth on roadmap) |
| Tools | 12 |
| Tests | 284 unit/protocol + 111 integration |
| Variable | Required |
| BC_BASE_URL | Yes |
| BC_USERNAME | Yes |
{
"mcpServers": {
"central": {
"command": "npx",
"args": ["-y", "business-central-mcp"],
"env": {
"BC_BASE_URL": "your-value",
"BC_USERNAME": "your-value",
"BC_PASSWORD": "your-value",
"BC_TENANT_ID": "your-value",
"BC_APPLICATION_ID": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| BC_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| BC_USERNAME | Configuration value read at startup. | Optional |
| BC_PASSWORD | Configuration value read at startup. | Optional |
| BC_TENANT_ID | Configuration value read at startup. | Optional |
| BC_APPLICATION_ID | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.