export declare const serverCardPath = "/.well-known/mcp/server-card.json"; type JsonSchemaObject = Record; type ServerCardToolDefinition = { name: string; title: string; description: string; inputSchema: JsonSchemaObject; }; type ServerCard = { $schema: string; version: string; protocolVersion: string; serverInfo: { name: string; title: string; version: string; }; description: string; documentationUrl: string; iconUrl: string; transport: { type: string; endpoint: string; }; authentication?: { required: boolean; schemes: string[]; }; capabilities: { tools: { listChanged: boolean; }; }; tools: ['dynamic'] | ServerCardToolDefinition[]; }; export declare const buildServerCard: (endpoint: string, options?: { authKey?: string; authSecret?: string; }) => ServerCard; export {}; //# sourceMappingURL=server-card.d.ts.map