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
27 lines • 696 B
TypeScript
import type { MasterPage } from './types.js';
/**
* Format MasterPage metadata into readable, structured output
*/
export declare class MetadataFormatter {
/**
* Format full page metadata
*/
static formatMasterPage(page: MasterPage): string;
/**
* Format actions list
*/
private static formatActions;
/**
* Format controls list
*/
private static formatControls;
/**
* Format as compact JSON suitable for LLMs
*/
static formatCompactJson(page: MasterPage): string;
/**
* Create a summary suitable for LLM context
*/
static formatSummary(page: MasterPage): string;
}
//# sourceMappingURL=formatter.d.ts.map