n8n
Version:
n8n Workflow Automation Tool
8 lines (7 loc) • 315 B
TypeScript
import type { McpRegistryServerResponse } from '@n8n/api-types';
import { McpRegistryService } from './registry/mcp-registry.service';
export declare class McpRegistryController {
private readonly service;
constructor(service: McpRegistryService);
listServers(): Promise<McpRegistryServerResponse[]>;
}