We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/puran-water/autocad-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•400 B
"""Shared fixtures for autocad-mcp tests."""
import pytest
@pytest.fixture(autouse=True)
def _isolate_backend(monkeypatch):
"""Reset the backend singleton between tests."""
import autocad_mcp.client as client_mod
monkeypatch.setattr(client_mod, "_backend", None)
# Force ezdxf backend for tests (not on Windows or no AutoCAD)
monkeypatch.setenv("AUTOCAD_MCP_BACKEND", "ezdxf")