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 • 689 B
TypeScript
/**
* Tell Me Parser
*
* Parses Business Central Tell Me search results from handler responses.
*/
import type { Result } from '../core/result.js';
import type { BCError } from '../core/errors.js';
export interface TellMePage {
id: string;
caption: string;
tooltip?: string;
badges?: string[];
}
/**
* Parser for Tell Me search results
*/
export declare class TellMeParser {
/**
* Parse Tell Me results from handler responses
*/
parseTellMeResults(handlers: readonly unknown[]): Result<TellMePage[], BCError>;
/**
* Transform raw result to TellMePage format
*/
private transformResult;
}
//# sourceMappingURL=tellme-parser.d.ts.map