UNPKG

n8n-bookstack-agent-tool

Version:

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

15 lines 456 B
export interface BookStackConfig { baseUrl: string; authType: 'bearer' | 'session'; token?: string; tokenSecret?: string; sessionCookie?: string; timeout?: number; retryAttempts?: number; retryDelay?: number; } export declare class BookStackConfigValidator { static validate(config: BookStackConfig): void; static createDefault(baseUrl: string, token: string): BookStackConfig; } //# sourceMappingURL=config.d.ts.map