UNPKG

gaia-vault-mcp

Version:

Azure Blob Storage MCP server for AI assistants

10 lines (9 loc) 251 B
import { z } from "zod"; import { FastMCP } from "fastmcp"; export type ToolConfig = { name: string; description: string; parameters: z.ZodObject<any>; execute: (args: any) => Promise<string>; }; export type Tool = FastMCP["addTool"];