We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aegntic/aegntic-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•347 B
"""Test configuration and fixtures."""
import pytest
import sys
import os
# Add src to Python path for tests
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'src'))
from mcp_server.server import get_server
@pytest.fixture
def mcp_server():
"""Get the MCP server instance for testing."""
return get_server()