bcdocker
Manages Business Central Docker containers, providing tools to list, create, start, stop, remove containers, and run AL tests, install apps, etc.
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., "@bcdockerList my BC containers"
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.
bcdocker
MCP server and CLI for Business Central Docker container management. Run via npx -- no install needed.
npx bcdocker list # list containers
npx bcdocker create # create a BC sandbox
npx bcdocker test bcsandbox # run AL testsQuick start
As MCP server (AI assistants)
Zero-install -- add to your IDE config and your AI can manage BC containers directly:
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"bcd": {
"command": "npx",
"args": ["-y", "bcdocker", "mcp"]
}
}
}Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"bcd": {
"command": "npx",
"args": ["-y", "bcdocker", "mcp"]
}
}
}VS Code / Copilot (.vscode/mcp.json):
{
"servers": {
"bcd": {
"type": "stdio",
"command": "npx",
"args": ["-y", "bcdocker", "mcp"]
}
}
}Once configured, ask your AI assistant things like:
"List my BC containers"
"Create a new BC sandbox with version 26.0"
"Show me the apps in bcsandbox"
"Run tests in my container"
"Compile and publish my AL project"
As CLI
Via npx (no install):
npx bcdocker list
npx bcdocker info bcsandbox
npx bcdocker create --name bcsandbox --type sandbox --bc-version 26.0 --country w1 --bypass-cdn
npx bcdocker start bcsandbox
npx bcdocker stop bcsandbox
npx bcdocker apps bcsandbox --publisher Microsoft
npx bcdocker test bcsandbox --codeunit 50100Global install (puts bcd on your PATH):
npm i -g bcdocker
bcd list
bcd create --name mybc --bc-version 26.0
bcd test mybcRelated MCP server: Docker MCP Server
Prerequisites
Node.js 18+
Windows PowerShell 5.1 (BC management cmdlets require it)
Docker Desktop in Windows containers mode
The npm package bundles the PowerShell module in ps/. Override with BCD_MODULE_PATH if needed.
CLI commands
Command | Description |
| List all BC containers with status |
| Show version, status, and endpoints |
| Create a new BC container (5-30 min) |
| Remove a container |
| Start a stopped container |
| Stop a running container |
| Restart a container |
| Open BC Web Client in browser |
| List apps (optional |
| Install a .app file |
| Uninstall an app |
| Compile and publish an AL project |
| Run AL tests (optional |
| Import test toolkit ( |
| Import a license file |
MCP tools
The same 15 operations exposed as MCP tools for AI assistants:
list-containers container-info create-container remove-container start-container stop-container restart-container open-webclient list-apps install-app uninstall-app publish-project run-tests import-test-toolkit import-license
Naming
Term | What it is |
| This npm package and GitHub repo. |
| The CLI command after global install ( |
| The PowerShell + Windows UI repo (module BCDocker). Different repo. |
Related
bcdocker-toolkit -- PowerShell module and Windows UI for Business Central Docker containers
Migrating from 1.x to 2.0
Breaking changes in 2.0:
MCP server invocation: add
"mcp"arg to your MCP client config. The previous config"args": ["-y", "bcdocker"]ran the CLI (which showed help instead of starting the MCP server). New:"args": ["-y", "bcdocker", "mcp"].bcd createflags: the--versionflag (which actually meant "artifact type") is replaced by--type sandbox|onpremand-v, --bc-version <version>. Previouslybcd create --version sandbox→ nowbcd create --type sandbox. A specific BC version like28.0now works:bcd create --bc-version 28.0.MCP
create-containerschema: theversionfield is split intotype(enum: sandbox, onprem) andbcVersion(string, e.g."28.0"or empty for latest).MCP tool responses: handlers now surface stderr and non-zero exit codes as
Failed:\n...text instead of returning the confident fallback message. AI clients will get actionable failure details instead of spurious "complete" messages.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/olederkach/bcdocker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server