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
32 lines • 696 B
TypeScript
/**
* Type definitions for BC WebSocket client services
*/
/**
* Filter field definition.
*
* Represents a filterable column in a BC list page.
*/
export type FilterField = {
/** Canonical field ID (e.g., "18_Customer.2") */
id: string;
/** User-friendly caption (e.g., "Name", "Balance") */
caption: string;
};
/**
* Session credentials for BC login.
*/
export type SessionCredentials = {
username: string;
password: string;
tenantId: string;
};
/**
* Connection configuration for BC Web Client.
*/
export type ConnectionConfig = {
baseUrl: string;
tenantId: string;
username: string;
password: string;
};
//# sourceMappingURL=types.d.ts.map