bc-rig
MCP server for automating Microsoft Dynamics 365 Business Central web and mobile interfaces using Playwright and Android emulator.
README
bc-rig
bc-rig is a Linux-hosted Model Context Protocol server for
driving two real Microsoft Dynamics 365 Business Central client surfaces:
- Business Central web through Playwright and a persistent, human-authenticated Chromium session.
- MobileNAV through an Android emulator,
adb, anduiautomator.
It exposes both drivers through one stdio MCP server and can record exploratory runs, screenshots, and honest handover reports. The package does not contain credentials, customer data, MobileNAV, or an Android system image.
Install
Requirements:
- Linux and Node.js 22 or newer.
- Playwright Chromium:
npx playwright install chromium. - For mobile tools: KVM access, Android command-line tools, and an x86_64 Android system image.
- A valid Business Central account and MobileNAV licence/configuration for the environments you test.
Install the tagged GitHub release globally:
npm install --global github:Brad-Fullwood/bc-rig#v3.0.0
bc-rig init
bc-rig doctor
bc-rig init creates a commented config from .env.example. By default the config is
~/.config/bc-rig/.env; runtime data is kept under ~/.local/share/bc-rig. Both locations can be
overridden—see Configuration.
To use the package without a global install, replace bc-rig with:
npx -y github:Brad-Fullwood/bc-rig#v3.0.0
MCP configuration
The repository's .mcp.json is portable and contains no checkout-specific cwd:
{
"mcpServers": {
"bc-rig": {
"command": "npx",
"args": ["-y", "github:Brad-Fullwood/bc-rig#v3.0.0"]
}
}
}
The CLI starts the MCP server when no subcommand is given. A global installation can instead use
"command": "bc-rig-mcp".
The old checkout-relative form—npx tsx src/mcp/server.ts plus an absolute cwd—is deliberately
not used. Renaming or moving a source folder therefore cannot break the published MCP command.
First run
Every browser is initialized from the AL project's
.vscode/launch.json;
there is no global tenant, environment, profile, or CDP setting. From an MCP client, start a session with:
{
"operation": "start",
"launchJson": "/absolute/path/to/project/.vscode/launch.json",
"configuration": "Microsoft cloud sandbox"
}
configuration is optional and selects the first AL launch entry when omitted. Comments and trailing
commas are supported. Tenant and environment come from that entry; omitted fields use Business
Central's normal cloud defaults. A headed window opens for interactive sign-in and MFA.
The equivalent operator CLI is:
bc-rig browser start --launch /absolute/path/to/project/.vscode/launch.json \
--configuration "Microsoft cloud sandbox"
bc-rig browser list
bc-rig bc-check --session <session-id>
Every start creates a new random session ID, persistent profile, headed Chromium process, and OS-assigned CDP port. Two agents—even against the same launch configuration—therefore cannot share or redirect each other's tabs. Each MCP process binds its browser tools to the session it starts or explicitly selects.
For MobileNAV:
bc-rig avd setup
bc-rig avd start
bc-rig mobile-install
bc-rig mobile-connect /path/to/environment.mnlc
The APK is downloaded from the vendor at setup time and checksum-verified. It is not redistributed by this project. Microsoft/MobileNAV authentication may still require interactive user action.
Efficient agent workflow
The MCP surface is built around project session → observe → referenced action:
- Call
browser_sessionwithoperation=startand the current project'slaunch.json. - Call
browser_observeormobile_observein compact mode. - Act on the returned stable ref, such as
@b7a12for@m20c9e. - Read the changed state returned by
browser_act/mobile_act; do not immediately observe again. - Use
queryto find page data that compact mode intentionally omitted. - When polling, pass the previous
revassince; unchanged state costs one short line. - Use full mode only for diagnosis. It is capped and explicitly marked as costly.
Refs are derived from role, accessible name, and occurrence in the existing ARIA/UI dump. Creating them requires no extra Playwright/ADB lookup calls. Browser actions accept an exact accessible name when a ref is unavailable, but the MCP surface does not expose raw CSS/Playwright selectors.
MCP tools
| Tool | Purpose |
|---|---|
doctor |
Report host, Android, Playwright, and project-session readiness. |
browser_session |
Start/use/status/list/stop isolated browsers from AL launch configurations. |
browser_observe |
Return compact referenced state, focused query matches, or a capped full snapshot. |
browser_act |
Navigate/click/fill/press and return semantic changes or resulting compact state. |
browser_screenshot |
Save visual evidence only when text state is insufficient. |
mobile_observe |
Return compact referenced native state, optionally filtered or full. |
mobile_act |
Launch/stop/connect/tap/type/back/reset/wait and return resulting compact state. |
mobile_screenshot |
Save emulator visual evidence. |
run |
Start/status/annotate/finish an exploratory evidence manifest. |
Connections are lazy: browser tools do not boot Android, and mobile tools do not require a browser. A mobile lease prevents two MCP processes from interleaving taps on the same emulator. Browser sessions are horizontally isolated and support concurrent agents.
Compared with v1, the advertised interface remains compact despite adding browser concurrency: 9 tools / 5,563 JSON bytes versus 18 tools / 7,663 bytes. Page responses shrink further because compact mode omits grid/text noise, actions return diffs, and unchanged polling returns only the revision marker.
Browser lifecycle change in v3
The singleton BC_BASE_URL, CDP_URL, and BC_PROFILE_DIR model was removed. Browser tools now
reject calls until browser_session start or browser_session use binds that MCP process to an
explicit project session. There is no implicit shared-browser fallback.
Reports
Start and finish a run through MCP, then generate its report:
bc-rig handover --run latest
Manifests and screenshots live in ~/.local/share/bc-rig/artifacts and generated reports in
~/.local/share/bc-rig/handover by default. The generator calls out read-only runs, missing client
surfaces, absent failure probes, and missing screenshots instead of overstating coverage.
Configuration
Configuration precedence is:
- Existing process environment variables.
BC_RIG_CONFIG_FILE..envin the process launch directory.~/.config/bc-rig/.env(or$XDG_CONFIG_HOME/bc-rig/.env).
Important overrides:
| Variable | Default |
|---|---|
BC_RIG_DATA_DIR |
$XDG_DATA_HOME/bc-rig or ~/.local/share/bc-rig |
BC_RIG_ARTIFACTS_DIR |
<data>/artifacts |
BC_RIG_HANDOVER_DIR |
<data>/handover |
ANDROID_HOME / ANDROID_SDK_ROOT |
~/Android/Sdk |
ANDROID_USER_HOME |
~/.android |
ANDROID_AVD_HOME |
<ANDROID_USER_HOME>/avd |
ANDROID_AVD_NAME |
bcrig |
Browser session records live under <data>/browser-sessions; isolated profiles live under
<data>/browser-profiles/<session-id>. Chromium chooses each CDP port dynamically.
Run bc-rig paths to see the resolved locations.
Development
git clone https://github.com/Brad-Fullwood/bc-rig.git
cd bc-rig
npm ci
cp .env.example .env
npm run check
npm run mcp
npm run check compiles TypeScript, runs unit tests, performs a real MCP initialize/list-tools
handshake, and inspects the publish tarball. See docs/architecture.md for the
design and CONTRIBUTING.md for contribution guidance.
Security and privacy
Run artifacts can contain page text, company names, record data, screenshots, and target URLs. Connection files can identify tenants and users. They are excluded from git, but you are responsible for protecting the runtime data directory and reviewing every change before publishing. See SECURITY.md.
Licence
MIT. MobileNAV, Business Central, Android, Chromium, and Playwright retain their respective licences and trademarks.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。