@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 • 522 B
TypeScript
/**
* MCP Resource handlers for Gremlin server.
*/
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import type { GremlinClient } from '../gremlin/client.js';
/**
* Register resource handlers with the MCP server.
*
* @param server - The MCP server instance
* @param getGraphClient - Function to get the Gremlin client instance
*/
export declare function registerResourceHandlers(server: McpServer, getGraphClient: () => Promise<GremlinClient>): void;
//# sourceMappingURL=resources.d.ts.map