We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lesleslie/session-buddy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•683 B
#!/usr/bin/env python3
"""Session Management MCP Server - Module Entry Point.
Provides MCP Common CLI with standard lifecycle commands.
Usage:
python -m session_buddy start # Start server
python -m session_buddy stop # Stop server
python -m session_buddy restart # Restart server
python -m session_buddy status # Show status
python -m session_buddy health # Show health
python -m session_buddy health --probe # Live health probe
"""
def main() -> None:
"""Main entry point for the session management MCP server."""
from .cli import main as cli_main
cli_main()
if __name__ == "__main__":
main()