We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattmahowald/sfmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
fixtures.py•356 B
from __future__ import annotations
import pytest
@pytest.fixture(scope="session")
def env_setup(monkeypatch: pytest.MonkeyPatch):
# Provide dummy env so settings load; replace with real values in dev
monkeypatch.setenv("SF_INSTANCE_URL", "https://example.my.salesforce.com")
monkeypatch.setenv("SF_ACCESS_TOKEN", "REPLACE_ME")
return True