We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/carlosedp/redfish-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•273 B
#!/usr/bin/env python3
"""
Redfish MCP Server Entry Point
This file serves as the entry point for the Redfish MCP server.
It imports and runs the server from the modular structure.
"""
from src.redfish_mcp_server.main import mcp
if __name__ == "__main__":
mcp.run()