UNPKG

littlesis-mcp

Version:

MCP server for LittleSis API - track corporate power and accountability

37 lines 932 B
#!/usr/bin/env node import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; export declare const configSchema: z.ZodObject<{ debug: z.ZodDefault<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { debug: boolean; }, { debug?: boolean | undefined; }>; declare function createServer({ config }: { config: z.infer<typeof configSchema>; }): Server<{ method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; } | undefined; } | undefined; }, { method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; } | undefined; }, { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; }>; export default createServer; //# sourceMappingURL=index.d.ts.map