Skip to main content
Glama

@arizeai/phoenix-mcp

Official
by Arize-ai
http_server.py473 B
import os import socket from http.server import HTTPServer, SimpleHTTPRequestHandler class HTTPServerV6(HTTPServer): address_family = socket.AF_INET6 def run_server(): os.chdir(os.path.dirname(__file__) + "/static_content") server_address = ("::", 8080) httpd = HTTPServerV6(server_address, SimpleHTTPRequestHandler) print("Starting HTTP server on port 8080...") # noqa: T201 httpd.serve_forever() if __name__ == "__main__": run_server()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'

If you have feedback or need assistance with the MCP directory API, please join our Discord server