We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oculairmedia/Tandoor.mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import pytest
import os
# Set test environment variables before importing server
os.environ.setdefault("TANDOOR_URL", "http://test-tandoor")
os.environ.setdefault("TANDOOR_API_TOKEN", "test-token")
@pytest.fixture
def mock_tandoor_url():
return "http://test-tandoor"
@pytest.fixture
def mock_api_token():
return "test-token"