actual-mcp
Version:
Actual Budget MCP server exposing API functionality
15 lines • 550 B
TypeScript
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>;
}, z.core.$strip>;
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