We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CollinDex/block-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•347 B
from mcp_app import mcp
from dotenv import load_dotenv
import tools.crypto
import tools.frax
import tools.telegram
import tools.wallet
import tools.gas
load_dotenv()
@mcp.tool()
def health_check() -> str:
"""Returns a status message that the server is live"""
return "runing"
if __name__ == "__main__":
mcp.run(transport="stdio")