n8n
Version:
n8n Workflow Automation Tool
19 lines (18 loc) • 536 B
TypeScript
import type { McpRegistryServer } from './mcp-registry.types';
export interface McpRegistrySearchResult {
name: string;
title: string;
description: string;
url: string;
transport: 'streamableHttp' | 'sse';
authentication: string;
credentialType: string;
tools: Array<{
name: string;
title?: string;
}>;
metadata: {
nodeTypeName: string;
};
}
export declare function searchMcpRegistryServers(servers: McpRegistryServer[], queries: string[]): McpRegistrySearchResult[];