This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch gremlin-mcp in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 846bdb96b61dedd8c33cc748d611653fe244b2ff Author: Stephen Mallette <[email protected]> AuthorDate: Fri Oct 3 12:51:20 2025 -0400 Minor doc updates --- docs/src/reference/gremlin-applications.asciidoc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/src/reference/gremlin-applications.asciidoc b/docs/src/reference/gremlin-applications.asciidoc index cb832fd415..c65aed2ab2 100644 --- a/docs/src/reference/gremlin-applications.asciidoc +++ b/docs/src/reference/gremlin-applications.asciidoc @@ -3048,13 +3048,13 @@ traversals. You can always provide an explicit traversal when you know what you The Gremlin MCP server exposes these tools: -* get_graph_status — Returns basic health and connectivity information for the backing Gremlin data source. -* get_graph_schema — Discovers vertex labels, edge labels, property keys, and relationship patterns. Low‑cardinality +* `get_graph_status` — Returns basic health and connectivity information for the backing Gremlin data source. +* `get_graph_schema` — Discovers vertex labels, edge labels, property keys, and relationship patterns. Low‑cardinality properties may be surfaced as enums to encourage valid values in queries. -* run_gremlin_query — Executes an arbitrary Gremlin traversal and returns JSON results. -* refresh_schema_cache — Forces schema discovery to run again when the graph has changed. -* import_graph_data — Loads graph data (for example, GraphSON/JSON/CSV) in batches and reports progress. -* export_subgraph — Exports a selected subgraph to JSON, GraphSON, or CSV. +* `run_gremlin_query` — Executes an arbitrary Gremlin traversal and returns JSON results. +* `refresh_schema_cache` — Forces schema discovery to run again when the graph has changed. +* `import_graph_data` — Loads graph data (for example, GraphSON/JSON/CSV) in batches and reports progress. +* `export_subgraph` — Exports a selected subgraph to JSON, GraphSON, or CSV. NOTE: Import and export operate on potentially large portions of the graph. Ensure proper authorization and confirm the assistant’s intent in the client before approving such operations. @@ -3075,9 +3075,9 @@ The resulting schema helps assistants construct well‑formed traversals and exp When the assistant needs to answer a question, a common sequence is: -. Optionally call get_graph_status. -. Retrieve (or reuse) schema via get_graph_schema. -. Formulate a traversal and call run_gremlin_query. +. Optionally, call get_graph_status. +. Retrieve (or reuse) schema via `get_graph_schema`. +. Formulate a traversal and call `run_gremlin_query`. . Present results and, if required, refine the traversal. For example, the assistant may execute a traversal like the following:
