run_query
Execute Cypher queries on Active Directory environments using BloodHound MCP, returning structured results for efficient analysis and insights.
Instructions
執行Cypher查詢並返回結果
Args: query: Cypher查詢字符串 parameters: 查詢參數字典
Returns: 查詢結果列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"parameters": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Parameters"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "run_queryArguments",
"type": "object"
}