{"provisioned":true,"server":"Memory","description":"Store and retrieve key-value data. Persists across requests within a session.","endpoints":{"list_tools":"http://www.tryautropic.com/mcp/memory/tools/list","call_tool":"http://www.tryautropic.com/mcp/memory/tools/call"},"tools":[{"name":"store","description":"Store a value with a key","inputSchema":{"type":"object","properties":{"key":{"type":"string","description":"Storage key"},"value":{"type":"string","description":"Value to store (will be JSON stringified if object)"},"namespace":{"type":"string","description":"Optional namespace to avoid collisions"}},"required":["key","value"]}},{"name":"retrieve","description":"Retrieve a value by key","inputSchema":{"type":"object","properties":{"key":{"type":"string","description":"Storage key"},"namespace":{"type":"string","description":"Optional namespace"}},"required":["key"]}},{"name":"list_keys","description":"List all keys in a namespace","inputSchema":{"type":"object","properties":{"namespace":{"type":"string","description":"Optional namespace"}}}},{"name":"delete","description":"Delete a key","inputSchema":{"type":"object","properties":{"key":{"type":"string","description":"Storage key"},"namespace":{"type":"string","description":"Optional namespace"}},"required":["key"]}}],"usage":{"example":"curl -X POST http://www.tryautropic.com/mcp/memory/tools/call -H \"Content-Type: application/json\" -d '{\"name\": \"store\", \"arguments\": {}}'"}}