n8n-bookstack-agent-tool
Version:
Comprehensive BookStack API integration tool for n8n AI Agent with MCP framework compatibility
15 lines • 414 B
TypeScript
export interface MCPCommand {
name: string;
description: string;
inputSchema: {
type: 'object';
properties: Record<string, any>;
required?: string[];
};
}
export declare class CommandGenerator {
static generateMCPCommands(): MCPCommand[];
private static endpointToMCPCommand;
static generateCommandSchema(): any;
}
//# sourceMappingURL=command-generator.d.ts.map