We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aegntic/aegntic-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•349 B
#!/usr/bin/env python3
"""Entry point for the Recommended MCP Server."""
import sys
import os
# Add src to Python path so we can import our server
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
from mcp_server.server import mcp
def main():
"""Run the MCP server."""
mcp.run()
if __name__ == "__main__":
main()