UNPKG

bc-webclient-mcp

Version:

Model Context Protocol (MCP) server for Microsoft Dynamics 365 Business Central via WebUI protocol. Enables AI assistants to interact with BC through the web client protocol, supporting Card, List, and Document pages with full line item support and server

696 lines (514 loc) โ€ข 23.5 kB
<div align="center"> # ๐Ÿš€ BC WebClient MCP **Model Context Protocol server for Microsoft Dynamics 365 Business Central via WebUI protocol** [![npm version](https://img.shields.io/npm/v/bc-webclient-mcp.svg)](https://www.npmjs.com/package/bc-webclient-mcp) [![npm downloads](https://img.shields.io/npm/dm/bc-webclient-mcp.svg)](https://www.npmjs.com/package/bc-webclient-mcp) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-5.3-blue?logo=typescript)](https://www.typescriptlang.org/) [![Node.js](https://img.shields.io/badge/Node.js-18+-green?logo=node.js)](https://nodejs.org/) [![MCP](https://img.shields.io/badge/MCP-2025--06--18-purple)](https://modelcontextprotocol.io/) [Features](#-features) โ€ข [Quick Start](#-quick-start) โ€ข [Tools](#-available-tools) โ€ข [Documentation](#-documentation) โ€ข [Architecture](#-architecture) </div> --- ## ๐Ÿ“– Overview **BC WebClient MCP** is a Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with Microsoft Dynamics 365 Business Central through a clean, intuitive interface. Built by reverse-engineering BC's WebUI WebSocket protocol, it provides real-time access to ERP data, business logic, and operations. ### What is MCP? The [Model Context Protocol](https://modelcontextprotocol.io/) is an open standard that enables AI assistants to securely connect with external data sources and tools. This server implements MCP to bridge Claude with Business Central's internal APIs. ### Why This Matters Business Central's web client uses an undocumented WebSocket protocol for all UI operations. This project reverse-engineers the **WebUI protocol** (not official APIs) to: - โœ… **Enable AI-driven ERP automation** - Let Claude interact with BC data naturally - โœ… **No custom extensions required** - Works with vanilla BC installations - โœ… **Real-time operations** - Leverage BC's live WebSocket connection - โœ… **Production-ready** - Built on BC's actual internal protocol (the same one the web UI uses) --- ## โœจ Features ### **Version 2.5 Highlights** - **Workflow Tracking** - Track multi-step business processes with `start_workflow`, `get_workflow_state`, `end_workflow` - **Dialog Handling** - Full `handle_dialog` tool for template selection, confirmations, and prompts - **Document Line Items** - Write to subpages/repeaters with `subpage`, `lineBookmark`, `lineNo` parameters - **Document Pages** - Full support for Sales Orders, Purchase Orders with header + line items - **MCP Resources** - Access BC schema, workflows, and session state - **MCP Prompts** - Guided workflows for common operations - **Multi-Page Support** - Card, List, and Document pages all work reliably <table> <tr> <td width="50%"> ### ๐Ÿ” **Discovery & Search** - Tell Me search integration (Alt+Q) - Page metadata extraction - Field and action discovery - Dynamic form inspection </td> <td width="50%"> ### ๐Ÿ“Š **Data Operations** - Read page data in real-time - Filter and query list pages - Create and update records - Execute page actions - **NEW:** Document pages with line items </td> </tr> <tr> <td width="50%"> ### ๐Ÿ” **Authentication** - Session-based web authentication - Support for all BC auth types - CSRF token management - Automatic session handling </td> <td width="50%"> ### โšก **Performance** - Event-driven architecture - Gzip compression support - Connection pooling ready - Efficient state management </td> </tr> </table> --- ## ๐Ÿš€ Quick Start Get up and running with BC WebClient MCP in 5 minutes. ### Prerequisites - **Node.js** 18 or higher ([Download](https://nodejs.org/)) - **Business Central v27.0** (other versions may work but are not tested - protocol specifics are BC 27) - Valid BC credentials with web client access - **Claude Desktop** ([Download](https://claude.ai/download)) or any MCP-compatible client ### Step 1: No Installation Required! The MCP server runs directly via `npx` - no installation needed. Just configure Claude Desktop in the next step. ### Step 2: Configure Claude Desktop **Find your Claude Desktop config file:** - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json` - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json` - **Linux**: `~/.config/Claude/claude_desktop_config.json` **Edit the config file** and add the MCP server (replace with your BC credentials): ```json { "mcpServers": { "business-central": { "command": "cmd", "args": [ "/c", "npx", "bc-webclient-mcp@latest" ], "env": { "BC_BASE_URL": "http://your-bc-server/BC/", "BC_USERNAME": "your-username", "BC_PASSWORD": "your-password", "BC_TENANT_ID": "default" } } } } ``` > **Note**: On macOS/Linux, use `"command": "sh"` and `"args": ["-c", "npx bc-webclient-mcp@latest"]` instead. **Why `npx`?** - โœ… No installation required - runs directly from npm - โœ… Always uses the latest version automatically - โœ… No need to manage global packages **Important notes:** - Use `BC_USERNAME=username`, **NOT** `domain\username` - The tenant is handled automatically in the URL parameter - For BC Online, use your full BC URL (e.g., `https://businesscentral.dynamics.com/...`) ### Step 3: Restart Claude Desktop **Restart Claude Desktop completely** to load the MCP server. ### Step 4: Verify It's Working Open a new chat in Claude Desktop and try: ``` Search for customer pages ``` You should see Claude using the `search_pages` tool and returning BC pages. If the MCP server appears in the tools list (๐Ÿ”ง icon), you're all set! ### ๐ŸŽ‰ What You Can Do Now Try these commands to explore v2 capabilities: **Document Pages with Line Items:** ``` Read Sales Order 101001 with all line items ``` **Smart Search:** ``` Find all pages related to inventory management ``` **Resources (Schema Discovery):** ``` What BC pages are available? ``` *(Uses the `bc://schema/pages` resource)* **Guided Workflows (Prompts):** ``` Create a new customer named Acme Corporation ``` *(Uses the `create_bc_customer` prompt for step-by-step guidance)* **Data Operations:** ``` Show me customers where balance is over 10000 ``` **Field Updates:** ``` Update customer 10000's credit limit to 50000 ``` ### ๐Ÿ”ง Quick Troubleshooting **MCP server not showing up in Claude Desktop?** - Check the config file syntax is valid JSON - Restart Claude Desktop completely (close all windows) - Verify Node.js is installed: `node --version` (requires 18+) - Check Claude Desktop logs: View โ†’ Developer โ†’ Toggle Developer Tools โ†’ Console **Connection failed?** - Verify BC is accessible: Open `http://your-bc-server/BC/` in a browser - Check `BC_BASE_URL` includes the `/BC/` path - Ensure firewall allows WebSocket connections **Authentication error?** - Test login in browser first - Use username WITHOUT domain prefix (just `username`) - Verify tenant ID matches your BC installation (`default` for on-prem) **"TypeScript errors" when building?** - Run `npx tsc --noEmit` to see detailed errors - Ensure Node.js version is 18 or higher: `node --version` For more troubleshooting, see [`CLAUDE.md`](./CLAUDE.md#troubleshooting) ### ๐Ÿ“ฆ Alternative: Install from Source For development, testing unreleased features, or contributing to the project: ```bash # Clone the repository git clone https://github.com/SShadowS/bc-webclient-mcp-server.git cd bc-webclient-mcp-server # Install dependencies npm install # Build the TypeScript project npm run build ``` Then in Claude Desktop config, use the local path: ```json { "mcpServers": { "business-central": { "command": "node", "args": ["C:\\path\\to\\bc-webclient-mcp-server\\dist\\index.js"], "env": { "BC_BASE_URL": "http://your-bc-server/BC/", "BC_USERNAME": "your-username", "BC_PASSWORD": "your-password", "BC_TENANT_ID": "default" } } } } ``` **Note**: Use full absolute paths with double backslashes on Windows. --- ## Available Tools The MCP server provides 10 tools for AI interaction: ### Core Tools (7) | Tool | Description | Level | |------|-------------|-------| | **`search_pages`** | Search for pages using Tell Me (Alt+Q) | Discovery | | **`get_page_metadata`** | Get page structure, fields, and actions | Discovery | | **`read_page_data`** | Read data from a page (with server-side filtering) | Read | | **`write_page_data`** | Write field values with validation, supports subpage/line operations | Write | | **`execute_action`** | Execute page actions (New, Edit, Post, etc.) | Action | | **`select_and_drill_down`** | Navigate between pages via drill-down | Navigation | | **`handle_dialog`** | Handle BC dialogs (template selection, confirmations) | Dialog | ### Workflow Tools (3) | Tool | Description | |------|-------------| | **`start_workflow`** | Begin tracking a multi-step business process | | **`get_workflow_state`** | Query workflow state, history, and unsaved changes | | **`end_workflow`** | Complete workflow with final status | ### Optional/Advanced Tools | Tool | Description | |------|-------------| | **`create_record_by_field_name`** | Create records using field names (convenience wrapper) | ### Tool Architecture The MCP server provides tools at multiple levels: **Core Tools** - Essential primitives for BC interaction: - `write_page_data` - Write fields with immediate validation, subpage/line support - `execute_action` - Execute any page action with auto-resolved controlPath - `handle_dialog` - Handle dialogs with row selection and button clicks **Workflow Tools** - Track multi-step business processes: - `start_workflow` โ†’ perform operations with `workflowId` โ†’ `end_workflow` - Tracks unsaved changes, operation history, and errors **Convenience Tools** - Higher-level wrappers: - `create_record_by_field_name` - Simplified record creation using field names ### Example Usage Once connected, you can interact with Business Central through Claude: ``` You: "Search for customer-related pages" Claude: [Uses search_pages tool] Found 21 customer pages: - Page 21: Customer Card - Page 22: Customer List ... You: "Show me customers where balance is over 10000" Claude: [Uses read_page_data with filters] Found 5 customers with balance > 10000: 1. Contoso Ltd - Balance: 15,234.50 2. Fabrikam Inc - Balance: 12,890.00 ... You: "Update customer 10000's credit limit to 50000" Claude: [Uses get_page_metadata, execute_action("Edit"), write_page_data, execute_action("Save")] Updated customer successfully: - Opened Customer Card for customer 10000 - Switched to Edit mode - Updated Credit Limit: 50,000.00 - Saved changes You: "Add a line to Sales Order 101001" Claude: [Uses write_page_data with subpage parameter] Added line to Sales Order: - Item No.: 1000 - Quantity: 5 - Line created successfully ``` --- ## ๐Ÿ” Security & User Consent ### User Consent Flow This MCP server implements the **MCP 2025 user consent requirement** to ensure users maintain control over all data-modifying operations. #### How It Works 1. **Tool Classification**: Each tool is classified by risk level: - ๐ŸŸข **Low Risk** (read-only) - No consent required - ๐ŸŸก **Medium Risk** (writes) - User approval required - ๐Ÿ”ด **High Risk** (irreversible) - User approval + warning 2. **Consent Enforcement**: Claude Desktop shows approval dialog before executing write operations: ``` โš ๏ธ Tool Execution Request Claude wants to execute: create_record Create a new record in Business Central? This will add data to your Business Central database. [Deny] [Allow] ``` 3. **Audit Trail**: All approved operations are logged with: - Timestamp - Tool name - Input summary (sanitized) - Execution result #### Tool Consent Requirements | Tool | Requires Consent | Risk Level | Reason | |------|------------------|------------|--------| | search_pages | No | Low | Read-only discovery | | get_page_metadata | No | Low | Read metadata only | | read_page_data | No | Low | Read-only data access | | start_workflow | No | Low | Creates tracking state only | | get_workflow_state | No | Low | Read workflow state | | end_workflow | No | Low | Marks workflow complete | | write_page_data | Yes | Medium | Direct field writes | | select_and_drill_down | Yes | Medium | Navigation with selection | | handle_dialog | Yes | Medium | Can bypass safety prompts | | create_record_by_field_name | Yes | Medium | Creates new data | | execute_action | Yes | High | Can trigger Post/Delete | #### Audit Log Access Audit logs are available via structured logging (Pino). Example log entry: ```json { "level": "info", "msg": "Tool execution audit", "toolName": "create_record", "userApproved": true, "result": "success", "timestamp": "2025-11-08T10:30:45.123Z", "inputSummary": { "pageId": "21", "fields": "[Object]" } } ``` **Sensitive Data Protection**: The audit logger automatically redacts passwords, tokens, API keys, secrets, and other credential fields. For more details, see [docs/TOOL-CONSENT-CLASSIFICATION.md](./docs/TOOL-CONSENT-CLASSIFICATION.md) and [docs/USER-CONSENT-GUIDE.md](./docs/USER-CONSENT-GUIDE.md). --- ## ๐Ÿ—๏ธ Architecture ### Protocol Stack ``` โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ Claude Desktop (AI Client) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ MCP Protocol โ”‚ (JSON-RPC over stdio) โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ MCP Server (Node.js) โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”‚ Tool Registry โ”‚ โ”‚ โ”‚ โ”‚ - search_pages โ”‚ โ”‚ โ”‚ โ”‚ - filter_list โ”‚ โ”‚ โ”‚ โ”‚ - get_page_metadata โ”‚ โ”‚ โ”‚ โ”‚ - ... โ”‚ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”‚ BCRawWebSocketClient โ”‚ โ”‚ โ”‚ โ”‚ - Session management โ”‚ โ”‚ โ”‚ โ”‚ - Event-driven handlers โ”‚ โ”‚ โ”‚ โ”‚ - Gzip compression โ”‚ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ WebSocket + JSON-RPC โ”‚ (BC Internal Protocol) โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ Business Central Web Service โ”‚ โ”‚ /BC/csh endpoint (WebSocket) โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ ``` ### Key Components - **`BCRawWebSocketClient`** - Core WebSocket client that mimics browser behavior - **`MCPServer`** - MCP protocol implementation (JSON-RPC over stdio) - **`BaseMCPTool`** - Base class for all MCP tools with error handling - **Protocol Parsers** - Decode BC's internal handler arrays - **Event Emitters** - Handle asynchronous BC responses ### How It Works 1. **Authentication**: Web login flow โ†’ Session cookies + CSRF token 2. **WebSocket Connection**: Connect to `/csh` with session credentials 3. **Session Opening**: OpenSession request โ†’ Extract session identifiers 4. **Event-Driven Operations**: Send Invoke requests โ†’ Wait for handler arrays 5. **Response Parsing**: Decompress gzip โ†’ Parse handler structures โ†’ Extract data For deep technical details, see: - [`ARCHITECTURE.md`](./ARCHITECTURE.md) - Complete architecture analysis - [`BC-COPILOT-IMPLEMENTATION.md`](./BC-COPILOT-IMPLEMENTATION.md) - BC's internal Copilot protocol - [`docs/FILTER_METADATA_SOLUTION.md`](./docs/FILTER_METADATA_SOLUTION.md) - Filter implementation --- ## ๐Ÿ“š Documentation ### Quick Reference - **[CLAUDE.md](./CLAUDE.md)** - Essential guide for development and troubleshooting - **[SETUP.md](./SETUP.md)** - Step-by-step setup instructions - **[ARCHITECTURE.md](./ARCHITECTURE.md)** - System architecture and design decisions ### Deep Dives - **[BC-COPILOT-IMPLEMENTATION.md](./BC-COPILOT-IMPLEMENTATION.md)** - ๐Ÿ”ฅ **Must Read!** - BC's exact Copilot protocol - **[BC-AI-AGENT-ANALYSIS.md](./BC-AI-AGENT-ANALYSIS.md)** - BC's built-in AI agent framework - **[docs/FILTER_METADATA_SOLUTION.md](./docs/FILTER_METADATA_SOLUTION.md)** - Filter tool implementation - **[docs/current/TELLME-SEARCH-STATUS.md](./docs/current/TELLME-SEARCH-STATUS.md)** - Tell Me search implementation ### External Resources - [Business Central API Documentation](https://learn.microsoft.com/dynamics365/business-central/dev-itpro/api-reference/v2.0/) - [Model Context Protocol Specification](https://modelcontextprotocol.io/) - [WebSocket Protocol RFC 6455](https://tools.ietf.org/html/rfc6455) - [JSON-RPC 2.0 Specification](https://www.jsonrpc.org/specification) --- ## ๐Ÿงช Development ### Project Structure ``` bc-poc/ โ”œโ”€โ”€ src/ โ”‚ โ”œโ”€โ”€ core/ # Core infrastructure โ”‚ โ”‚ โ”œโ”€โ”€ errors.ts # Error types and handling โ”‚ โ”‚ โ”œโ”€โ”€ result.ts # Result monad for error handling โ”‚ โ”‚ โ””โ”€โ”€ interfaces.ts # TypeScript interfaces โ”‚ โ”œโ”€โ”€ services/ # Business logic โ”‚ โ”‚ โ”œโ”€โ”€ BCRawWebSocketClient.ts # โญ Main WebSocket client โ”‚ โ”‚ โ”œโ”€โ”€ mcp-server.ts # MCP protocol server โ”‚ โ”‚ โ””โ”€โ”€ stdio-transport.ts # stdin/stdout JSON-RPC transport โ”‚ โ”œโ”€โ”€ tools/ # MCP tool implementations โ”‚ โ”‚ โ”œโ”€โ”€ search-pages-tool.ts โ”‚ โ”‚ โ”œโ”€โ”€ filter-list-tool.ts โ”‚ โ”‚ โ”œโ”€โ”€ get-page-metadata-tool.ts โ”‚ โ”‚ โ””โ”€โ”€ ... โ”‚ โ”œโ”€โ”€ protocol/ # BC protocol parsers โ”‚ โ”‚ โ”œโ”€โ”€ logical-form-parser.ts โ”‚ โ”‚ โ””โ”€โ”€ handler-types.ts โ”‚ โ””โ”€โ”€ types/ # TypeScript type definitions โ”œโ”€โ”€ test/ # Test scripts โ”œโ”€โ”€ docs/ # Detailed documentation โ””โ”€โ”€ dist/ # Compiled JavaScript (generated) ``` ### Development Commands ```bash # Type checking (run frequently!) npx tsc --noEmit # Build the project npm run build # Run in development mode npm run dev # Run tests npm test npm run test:coverage # Test specific functionality npm run test:invoke # Test Invoke method npm run test:mcp # Test MCP server ``` ### Code Quality Standards **โš ๏ธ NO STUBS POLICY**: This is a production codebase. Do NOT create: - Stub implementations - Mock functions that don't actually work - Placeholder code with "not yet implemented" errors - Tools that are registered but non-functional Every feature MUST be fully implemented and functional before being committed. ### Testing ```bash # Run all tests npm test # Run specific test suites npm run test:mcp:client # MCP client integration tests npm run test:mcp:real # Real BC integration tests # Test Tell Me search npx tsx test-tellme-search.ts "customer" # Test MCP server with real BC connection npm run test:mcp:real:client ``` --- ## ๐Ÿค Contributing Contributions are welcome! Please: 1. Read the architecture documentation first 2. Follow the existing code style and patterns 3. Ensure TypeScript compilation passes (`npx tsc --noEmit`) 4. Add tests for new functionality 5. Update documentation as needed ### Key Guidelines - **Use Windows paths** when working on Windows - **Run type checking regularly** with `npx tsc --noEmit` - **No stubs or mocks** - all implementations must be fully functional - **Read [`CLAUDE.md`](./CLAUDE.md)** for development guidelines - **Check existing docs** before implementing new features --- ## ๐Ÿ“‹ Requirements ### Supported Business Central Versions - โœ… **Business Central v27.0** (fully tested and supported) - โš ๏ธ **Other versions** (v24-v26, v28+) may work but are **not tested** - Protocol specifics are hardcoded for BC 27 - Older/newer versions may have different WebSocket protocol implementations - Use at your own risk - contributions for other versions welcome! - โœ… **On-Premises installations** (BC 27) - โœ… **Business Central Online** (BC 27) ### Authentication Support - โœ… NavUserPassword (username/password) - โœ… Windows Authentication - โœ… Azure AD (via web login) **No special BC configuration required!** The server mimics browser login behavior. --- ## ๐Ÿ› Troubleshooting ### Connection Issues ```bash # Test BC connectivity curl http://your-server/BC/ # Check BC service status (on-prem) docker exec Cronus27 powershell "Get-Service 'MicrosoftDynamicsNavServer*'" # Verify WebSocket endpoint wscat -c ws://your-server/BC/csh ``` ### Common Issues **"WebSocket connection failed"** - Verify `BC_BASE_URL` is correct and includes `/BC/` path - Ensure BC web client is accessible in browser first - Check firewall rules **"Authentication failed"** - Test login in browser: `http://your-server/BC/` - Use username WITHOUT domain prefix (just `username`, not `domain\username`) - Verify tenant ID is correct **"CSRF token not found"** - Ensure BC web client is accessible - Check if BC requires different authentication - Clear BC cache and restart services **"OpenSession timeout"** - Verify tenant ID matches your BC installation - Check BC server logs for errors - Increase timeout in BCRawWebSocketClient For more troubleshooting tips, see [`CLAUDE.md`](./CLAUDE.md#troubleshooting). --- ## ๐Ÿ“„ License This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details. --- ## ๐Ÿ™ Acknowledgments - Built on Microsoft Dynamics 365 Business Central - Implements the [Model Context Protocol](https://modelcontextprotocol.io/) by Anthropic - Inspired by BC's internal Copilot implementation --- ## ๐Ÿ“ž Support - **Issues**: [GitHub Issues](../../issues) - **Discussions**: [GitHub Discussions](../../discussions) - **Documentation**: [Project Wiki](../../wiki) --- <div align="center"> **[โฌ† back to top](#-bc-webclient-mcp)** Made with โค๏ธ for the Business Central community </div>