We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tylerburleigh/foundry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Shared fixtures for contract tests."""
import tempfile
from pathlib import Path
import pytest
@pytest.fixture
def temp_specs_dir():
"""Create a temporary specs directory structure."""
with tempfile.TemporaryDirectory() as tmpdir:
specs_dir = (Path(tmpdir) / "specs").resolve()
for folder in ("pending", "active", "completed", "archived"):
(specs_dir / folder).mkdir(parents=True)
yield specs_dir