/** * Все инструменты Kinescope MCP * Автоматически сгенерировано на основе Postman коллекции */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { KinescopeClient } from '../client.js'; export interface EndpointMetadata { resource: string; operation: 'read' | 'write'; httpMethod: 'get' | 'post' | 'put' | 'patch' | 'delete'; httpPath: string; } export interface Endpoint { metadata: EndpointMetadata; tool: Tool; handler: (client: KinescopeClient, args: any) => Promise; } export declare const endpoints: { metadata: { resource: string; operation: string; httpMethod: string; httpPath: string; }; tool: { name: string; description: string; inputSchema: { type: "object"; }; }; handler: (client: KinescopeClient, args: any) => Promise; }[]; //# sourceMappingURL=index.d.ts.map