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

37 lines 1.29 kB
/** * Application constants for the Gremlin MCP Server. */ export declare const SERVER_NAME = "gremlin-mcp"; export declare const SERVER_VERSION = "0.0.3"; export declare const RESOURCE_URIS: { readonly STATUS: "gremlin://status"; readonly SCHEMA: "gremlin://schema"; }; export declare const TOOL_NAMES: { readonly GET_GRAPH_STATUS: "get_graph_status"; readonly GET_GRAPH_SCHEMA: "get_graph_schema"; readonly RUN_GREMLIN_QUERY: "run_gremlin_query"; readonly REFRESH_SCHEMA_CACHE: "refresh_schema_cache"; readonly IMPORT_GRAPH_DATA: "import_graph_data"; readonly EXPORT_SUBGRAPH: "export_subgraph"; }; export declare const DEFAULTS: { readonly HOST: "localhost"; readonly PORT: 8182; readonly TRAVERSAL_SOURCE: "g"; readonly USE_SSL: false; readonly LOG_LEVEL: "info"; readonly SERVER_NAME: "gremlin-mcp"; readonly SERVER_VERSION: "0.0.3"; readonly IDLE_TIMEOUT_SECONDS: 300; }; export declare const STATUS_MESSAGES: { readonly AVAILABLE: "Available"; readonly NOT_CONNECTED: "Not Connected"; readonly CONNECTION_ERROR: "Connection Error"; }; export declare const MIME_TYPES: { readonly TEXT_PLAIN: "text/plain"; readonly APPLICATION_JSON: "application/json"; }; //# sourceMappingURL=constants.d.ts.map