We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/heffrey78/lifecycle-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•361 B
#!/usr/bin/env python3
"""
Direct runnable MCP server for lifecycle management.
Run with: uv run server.py
"""
import sys
from pathlib import Path
# Add src to path so we can import our modules
sys.path.insert(0, str(Path(__file__).parent / "src"))
# Import and run the main server
from lifecycle_mcp.server import main
if __name__ == "__main__":
main()