We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MonsterOne1/memu-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•360 B
"""
memU MCP Server
A Model Context Protocol (MCP) server for memU AI memory framework.
Provides standardized memory management capabilities for AI applications.
"""
__version__ = "0.1.0"
__author__ = "memU MCP Server Team"
__email__ = "support@example.com"
from .server import MemuMCPServer
from .config import Config
__all__ = ["MemuMCPServer", "Config"]