n8n
Version:
n8n Workflow Automation Tool
21 lines (20 loc) • 659 B
TypeScript
import type { McpRegistryServer } from './mcp-registry.types';
export interface McpRegistrySearchResult {
slug: string;
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 listMcpRegistryServers(servers: McpRegistryServer[]): McpRegistrySearchResult[];
export declare function searchMcpRegistryServers(servers: McpRegistryServer[], queries: string[]): McpRegistrySearchResult[];