get_memory_bank_structure
Retrieve the file structure of a memory bank to understand how project documentation is organized within the MCP server.
Instructions
Get a detailed description of the Memory Bank file structure.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp_memory_bank/main.py:36-39 (handler)The core handler function for the 'get_memory_bank_structure' tool. It is registered via the @mcp.tool() decorator and simply returns the 'structure' guide from the GUIDES dictionary, providing a detailed 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"]