arcadedb-execute-cypher Tool

Execute Cypher queries against ArcadeDB via Bolt.

About

arcadedb-execute-cypher executes an arbitrary Cypher query against an ArcadeDB source over the Bolt protocol. It supports a readOnly mode that rejects write statements and a dry_run mode that validates queries without executing them.

Note: This tool is intended for developer assistant workflows with human-in-the-loop and shouldn’t be used for production agents.

Compatible Sources

This tool can be used with the following database sources:

Source Name
ArcadeDB Source

Example

kind: tool
name: query_arcadedb
type: arcadedb-execute-cypher
source: my-arcadedb-source
readOnly: true
description: |
  Execute Cypher against ArcadeDB in read-only mode.
  Example:
  {{
      "cypher": "MATCH (n) RETURN count(n)"
  }}

Reference

fieldtyperequireddescription
typestringtrueMust be “arcadedb-execute-cypher”.
sourcestringtrueName of the ArcadeDB source the Cypher query should execute on.
descriptionstringtrueDescription of the tool that is passed to the LLM.
readOnlybooleanfalseIf set to true, the tool will reject any write operations in the Cypher query. Default is false.