UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

9 lines (8 loc) 419 B
import type { McpRegistryServer } from './mcp-registry.types'; export type McpRegistryServerMetadata = Pick<McpRegistryServer, 'slug' | 'version' | 'updatedAt'>; export declare class McpRegistryApiClient { fetchAllServers(): Promise<McpRegistryServer[]>; fetchServersMetadata(): Promise<McpRegistryServerMetadata[]>; fetchServersBySlugs(slugs: string[]): Promise<McpRegistryServer[]>; private getUrl; }