mcp-ipfs
Version:
MCP Server for interacting with the IPFS Storacha Network
14 lines • 462 B
TypeScript
import { CallToolRequest } from "@modelcontextprotocol/sdk/types.js";
type ToolArgs = CallToolRequest["params"]["arguments"];
type ContentPart = {
type: string;
[key: string]: any;
};
type ToolHandlerResponse = {
content: ContentPart[];
isError?: boolean;
};
type ToolHandler = (args: ToolArgs) => Promise<ToolHandlerResponse>;
export declare const toolHandlers: Record<string, ToolHandler>;
export {};
//# sourceMappingURL=tool_handlers.d.ts.map