list_graphs
Retrieve all accessible knowledge graphs from the Mnemosyne MCP server, with options to include statistics and metadata for comprehensive graph management.
Instructions
List all graphs accessible to the user via API server.
Args:
include_stats: Include graph statistics
include_metadata: Include graph metadata
Returns:
JSON string with graph list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_stats | No | ||
| include_metadata | No |
Input Schema (JSON Schema)
{
"properties": {
"include_metadata": {
"default": true,
"title": "Include Metadata",
"type": "boolean"
},
"include_stats": {
"default": true,
"title": "Include Stats",
"type": "boolean"
}
},
"type": "object"
}