We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gaiaaiagent/regen-python-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•357 B
#!/usr/bin/env python3
"""Entry point for the Regen Network 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 server
def main():
"""Run the MCP server."""
server.run()
if __name__ == "__main__":
main()