UNPKG
gaia-vault-mcp
Version:
latest (1.0.1)
1.0.1
1.0.0
Azure Blob Storage MCP server for AI assistants
gaia-vault-mcp
/
dist
/
types
/
tools.d.ts
10 lines
(9 loc)
•
251 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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"
];