UNPKG

n8n-bookstack-agent-tool

Version:

Comprehensive BookStack API integration tool for n8n AI Agent with MCP framework compatibility

13 lines 549 B
import { BookStackEndpoint } from '../types/api-spec.js'; export interface ExecutableMethod { name: string; endpoint: BookStackEndpoint; execute: (params: any, config: any) => Promise<any>; } export declare class ExecutableMethodGenerator { static generateExecutableMethods(): ExecutableMethod[]; private static createExecutableMethod; static getMethodByName(name: string): ExecutableMethod | undefined; static getMethodsByResource(resource: string): ExecutableMethod[]; } //# sourceMappingURL=executable-methods.d.ts.map