UNPKG

@kpritam/gremlin-mcp

Version:

A Gremlin MCP server that allows for fetching status, schema, and querying using Gremlin for any Gremlin-compatible graph database (TypeScript implementation).

14 lines 606 B
/** * Combined handler registration for MCP server. * Simplifies server setup by providing a single registration function. */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { GremlinClient } from '../gremlin/client.js'; /** * Register all MCP handlers (resources and tools) with the server. * * @param server - The MCP server instance * @param getGraphClient - Function to get the Gremlin client instance */ export declare function registerAllHandlers(server: McpServer, getGraphClient: () => Promise<GremlinClient>): void; //# sourceMappingURL=index.d.ts.map