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).

13 lines 506 B
/** * MCP Tool handlers for Gremlin server. */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { GremlinClient } from '../gremlin/client.js'; /** * Register tool handlers with the MCP server. * * @param server - The MCP server instance * @param getGraphClient - Function to get the Gremlin client instance */ export declare function registerToolHandlers(server: McpServer, getGraphClient: () => Promise<GremlinClient>): void; //# sourceMappingURL=tools.d.ts.map