get_graph_info
Analyze knowledge graphs to retrieve comprehensive details, statistics, and schema information for data exploration and management.
Instructions
Get comprehensive graph information.
Args:
graph_id: Graph to analyze
include_stats: Include detailed statistics
include_schema_preview: Include schema summary
ctx: MCP context for user authentication
Returns:
JSON response with complete graph details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| graph_id | Yes | ||
| include_stats | No | ||
| include_schema_preview | No |
Input Schema (JSON Schema)
{
"properties": {
"graph_id": {
"title": "Graph Id",
"type": "string"
},
"include_schema_preview": {
"default": false,
"title": "Include Schema Preview",
"type": "boolean"
},
"include_stats": {
"default": true,
"title": "Include Stats",
"type": "boolean"
}
},
"required": [
"graph_id"
],
"type": "object"
}