@n8n/n8n-nodes-langchain
Version:

9 lines (8 loc) • 325 B
TypeScript
import type { JSONSchema7 } from 'json-schema';
export type McpTool = {
name: string;
description?: string;
inputSchema: JSONSchema7;
};
export type McpServerTransport = 'sse' | 'httpStreamable';
export type McpAuthenticationOption = 'none' | 'headerAuth' | 'bearerAuth' | 'mcpOAuth2Api' | 'multipleHeadersAuth';