UNPKG

filemaker-data-api-mcp

Version:

Model Context Protocol (MCP) server providing FileMaker Data API integration with database introspection for AI agents. Compatible with Claude, Windsurf, Cursor, Cline, and other MCP-enabled assistants.

18 lines 598 B
import { Server } from "@modelcontextprotocol/sdk/server/index.js"; export type TransportType = "stdio" | "http" | "https"; export interface TransportConfig { type: TransportType; port?: number; host?: string; certPath?: string; keyPath?: string; } /** * Parse transport configuration from environment variables */ export declare function getTransportConfig(): TransportConfig; /** * Create and connect transport based on configuration */ export declare function setupTransport(server: Server, config: TransportConfig): Promise<void>; //# sourceMappingURL=transport.d.ts.map