@baruchiro/actual-mcp
Version:
Actual Budget MCP server exposing API functionality
21 lines • 659 B
TypeScript
import { successWithJson, errorFromCatch } from '../../../utils/response.js';
export declare const schema: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
name: {
type: string;
description: string;
};
transferAccount: {
type: string;
description: string;
};
};
required: string[];
};
};
export declare function handler(args: Record<string, unknown>): Promise<ReturnType<typeof successWithJson> | ReturnType<typeof errorFromCatch>>;
//# sourceMappingURL=index.d.ts.map