UNPKG

@baruchiro/actual-mcp

Version:

Actual Budget MCP server exposing API functionality

19 lines 640 B
import { z } from 'zod'; import { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; import type { ToolInput } from '../../types.js'; declare const RunBankSyncArgsSchema: z.ZodObject<{ accountId: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { accountId?: string | undefined; }, { accountId?: string | undefined; }>; type RunBankSyncArgs = z.infer<typeof RunBankSyncArgsSchema>; export declare const schema: { name: string; description: string; inputSchema: ToolInput; }; export declare function handler(args: RunBankSyncArgs): Promise<CallToolResult>; export {}; //# sourceMappingURL=index.d.ts.map