بنقرة واحدة
neo4j-query
Run an arbitrary Cypher query against Neo4j and return JSON records.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run an arbitrary Cypher query against Neo4j and return JSON records.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Technical reference for OpenSage-ADK — a Google ADK-based framework for long-horizon, tool-heavy AI agents. Covers architecture, configuration, customization, extension, and production agent patterns.
Find testcase IDs (TESTCASE nodes) that cover a given function (METHOD node) in Neo4j.
Code coverage analysis tools. These tools help analyze and visualize code coverage for test execution, upload coverage data to Neo4j, and display coverage statistics. Available tools: run-coverage, show-coverage.
Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.
Standalone `mmp` executable for managing multiple MCP servers from a loaded gateway config.
Neo4j database management and query tools. These tools help interact with Neo4j databases for code analysis, graph queries, and data management. Available tools: neo4j-query.
| name | neo4j-query |
| description | Run an arbitrary Cypher query against Neo4j and return JSON records. |
| should_run_in_sandbox | main |
| returns_json | true |
Run an arbitrary Cypher query against Neo4j and return JSON records.
python3 /bash_tools/neo4j/neo4j-query/scripts/neo4j_query.py "MATCH (n) RETURN n LIMIT 1"
python3 /bash_tools/neo4j/neo4j-query/scripts/neo4j_query.py \
"MATCH (n {name: \$name}) RETURN n" \
--params '{"name":"Alice"}'
python3 /bash_tools/neo4j/neo4j-query/scripts/neo4j_query.py \
"SHOW DATABASES YIELD name RETURN name" \
--database "analysis"
Type: str
Cypher query string to execute.
Type: str
Optional JSON object string for query parameters. Default: {}.
Type: str
Neo4j database name (optional). If omitted, defaults to NEO4J_DATABASE env var
or analysis.
{
"records": [
{"key": "value"}
]
}
neo4j