We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/izaitsevfb/claude-pytorch-treehugger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env python3
"""
PyTorch HUD MCP server entry point
"""
from pytorch_hud.server.mcp_server import mcp
def main():
"""Main entry point for the application"""
print("Starting PyTorch HUD MCP server...")
mcp.run()
if __name__ == "__main__":
main()