We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jowpereira/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_auth.py•371 B
# Tests for authentication endpoints
import pytest
from fastapi.testclient import TestClient
# More tests will be added here
def test_initial_setup_placeholder(client: TestClient):
"""Placeholder test to ensure pytest setup is working."""
response = client.get("/tools/health") # Changed from /tools/docs to /tools/health
assert response.status_code == 200