UNPKG

csv-mcp

Version:

A Model Context Protocol (MCP) server for powerful CSV file operations - read, write, query, transform, analyze CSV data with formulas and charts.

26 lines 667 B
/** * MCP Tools Registry - CSV tools */ import { MCPResult } from '../types/mcp'; /** * Get all available tools for MCP server registration * @returns Array of tool definitions */ export declare const getToolDefinitions: () => { name: string; description: string; inputSchema: import("../types/mcp").MCPInputSchema; }[]; /** * Handle MCP tool call requests * @param request - MCP tool call request * @returns Tool response in MCP format */ export declare const handleToolCall: (request: any) => Promise<MCPResult | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=index.d.ts.map