actual-mcp
Version:
Actual Budget MCP server exposing API functionality
13 lines • 487 B
TypeScript
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
interface CreateServerOptions {
enableWrite: boolean;
}
/**
* Creates and configures a new MCP Server instance with all resources, tools, and prompts.
*
* @param options - Server configuration options
* @returns A fully configured Server instance ready to be connected to a transport
*/
export declare function createServer(options: CreateServerOptions): Server;
export {};
//# sourceMappingURL=server.d.ts.map