get_memory_bank_structure
Generate a detailed description of Memory Bank file structure for context preservation in AI assistant environments, enabling users to effectively manage and organize project memory banks.
Instructions
Get a detailed description of the Memory Bank file structure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"title": "get_memory_bank_structureArguments",
"type": "object"
}
Implementation Reference
- src/mcp_memory_bank/main.py:36-39 (handler)This async function is the core handler for the 'get_memory_bank_structure' tool. It is decorated with @mcp.tool(), which registers it in the FastMCP server. The function simply returns the pre-defined STRUCTURE_GUIDE from the GUIDES dictionary, providing a description of the Memory Bank file structure.@mcp.tool() async def get_memory_bank_structure() -> str: """Get a detailed description of the Memory Bank file structure.""" return GUIDES["structure"]