@n8n/n8n-nodes-langchain
Version:
11 lines (10 loc) • 490 B
TypeScript
import type { JSONSchema7 } from 'json-schema';
import { isMcpOAuth2Authentication, type McpOAuth2CredentialType } from 'n8n-workflow';
export type McpTool = {
name: string;
description?: string;
inputSchema: JSONSchema7;
};
export type McpServerTransport = 'sse' | 'httpStreamable';
export type McpAuthenticationOption = 'none' | 'headerAuth' | 'bearerAuth' | 'multipleHeadersAuth' | McpOAuth2CredentialType;
export { isMcpOAuth2Authentication, type McpOAuth2CredentialType };