We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Spectating101/cite-finance'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•555 B
"""
Pytest configuration for Cite-Finance API tests
"""
import pytest
import asyncio
@pytest.fixture(scope="session")
def event_loop():
"""Create an instance of the default event loop for the test session."""
loop = asyncio.get_event_loop_policy().new_event_loop()
yield loop
loop.close()
# Add fixtures for test database setup/teardown here when needed
# Example:
#
# @pytest.fixture
# async def test_db():
# """Setup test database"""
# # Create test database
# # Run migrations
# yield db_connection
# # Cleanup