We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ancrz/penpot-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•461 B
"""Test fixtures for Penpot MCP server."""
from __future__ import annotations
import pytest_asyncio
from penpot_mcp.services.api import api
from penpot_mcp.services.db import db
@pytest_asyncio.fixture(scope="session", autouse=True, loop_scope="session")
async def setup_services():
"""Connect to Penpot DB and API once for the entire test session."""
await db.connect()
await api.connect()
yield
await api.close()
await db.close()