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
23 lines • 932 B
TypeScript
/**
* Workflow Patterns Documentation Resource
*
* Provides common workflow patterns and best practices for BC MCP tools.
* This resource helps AI assistants understand how to use tools effectively.
*/
import type { Result } from '../core/result.js';
import type { IMCPResource } from '../core/interfaces.js';
/**
* WorkflowPatternsDocResource provides documentation for common BC workflows.
*/
export declare class WorkflowPatternsDocResource implements IMCPResource {
readonly uri = "bc://docs/workflow-patterns";
readonly name = "BC MCP Workflow Patterns";
readonly description = "Common workflow patterns and best practices for BC MCP tools.";
readonly mimeType = "text/markdown";
/**
* Reads the workflow patterns documentation.
* @returns Markdown documentation as a string
*/
read(): Promise<Result<string, never>>;
}
//# sourceMappingURL=docs-workflow-patterns-resource.d.ts.map