UNPKG

@digitalsamba/embedded-api-mcp-server

Version:

Digital Samba Embedded API MCP Server - Model Context Protocol server for Digital Samba's Embedded API

26 lines 681 B
/** * Export Tools Module * * Provides tool equivalents for export resources to ensure compatibility with AI assistants * that can only access tools, not resources. * * @module tools/export-tools */ import { Tool } from "@modelcontextprotocol/sdk/types.js"; /** * Execute export tool function */ export declare function executeExportTool(toolName: string, params: any, request: any, options: { apiUrl?: string; }): Promise<{ content: Array<{ type: string; text: string; }>; isError?: boolean; }>; /** * Register export tools with the MCP server */ export declare function registerExportTools(): Tool[]; //# sourceMappingURL=index.d.ts.map