Skip to main content
Glama

NexusMind

by SaptaDey
health_check.py690 B
""" Simple health check script for the NexusMind server. """ import requests def check_health(): """Check the health endpoint of the NexusMind server.""" try: response = requests.get("http://localhost:8000/health") if response.status_code == 200: print(f"Health check succeeded! Response: {response.json()}") return True else: print(f"Health check failed with status code {response.status_code}") print(f"Response: {response.text}") return False except requests.RequestException as e: print(f"Connection error: {e}") return False if __name__ == "__main__": check_health()

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/SaptaDey/NexusMind'

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