@iqai/mcp-near-agent
Version:
Mcp server for Near
12 lines (11 loc) • 389 B
TypeScript
import z from "zod";
import { Tool } from "../types.js";
declare const listWatchingSchema: z.ZodObject<{
includeStats: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
includeStats?: boolean | undefined;
}, {
includeStats?: boolean | undefined;
}>;
export declare const listWatchingTool: Tool<Record<string, unknown> | undefined, typeof listWatchingSchema>;
export {};