UNPKG

@inso_web/els-mcp

Version:

MCP-сервер поверх INSO Error Logs Service. Read-only tools (search, analytics, fingerprinting, correlations) для подключения Claude Desktop/Code и ChatGPT к логам ошибок. Streamable HTTP transport + stdio для npx-запуска.

15 lines 549 B
import { Router } from 'express'; import type { Config } from '../../config.js'; /** * Well-known discovery endpoints: * - `/.well-known/oauth-protected-resource` (RFC 9728) * - `/.well-known/mcp` (MCP-specific discovery) * * Оба статичны (зависят только от config), отдаются без auth. */ export interface CreateWellKnownOptions { config: Config; toolNames: string[]; } export declare function createWellKnownRouter(opts: CreateWellKnownOptions): Router; //# sourceMappingURL=wellKnown.d.ts.map