We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bugffet/mcpbin'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•240 B
"""Shared test fixtures."""
import sys
import pytest
from fastmcp.client import Client
sys.path.insert(0, "src")
from mcpbin.app import mcp
@pytest.fixture
async def client():
async with Client(transport=mcp) as c:
yield c