UNPKG

kntn-dev-mcp

Version:

MCP server providing comprehensive kintone development support including API specs, field types, and development tips

19 lines (18 loc) 579 B
export declare class GetUpdateInfo { static readonly name = "get_update_info"; static readonly description = "Get information about the last data update and next scheduled update"; static readonly inputSchema: { type: string; properties: { includeHistory: { type: string; default: boolean; }; includeSourceVersions: { type: string; default: boolean; }; }; }; static run(_args: Record<string, unknown>): Promise<unknown>; }