UNPKG
@edjl/rest-mcp
Version:
latest (1.0.8)
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
REST API tools for MCP (Model Context Protocol)
@edjl/rest-mcp
/
dist
/
tools
/
patch.d.ts
10 lines
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ z }
from
'zod'
;
interface
Tool
{
name
:
string
;
description
:
string
;
inputSchema
: z.
ZodSchema
<
any
>;
handler
:
(
params
:
any
,
authToken
?:
string
) =>
Promise
<
any
>; }
export
declare
const
patchTool
:
Tool
;
export
{};
//# sourceMappingURL=patch.d.ts.map