We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/applied-ai-systems/aas-lancedb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
conftest.py•563 B
"""Test configuration."""
import os
import pytest
# Set environment variables for testing
os.environ["LANCEDB_URI"] = ".lancedb"
# Configure pytest for async tests
pytest_plugins = ["pytest_asyncio"]
def pytest_collection_modifyitems(config, items):
"""Skip integration tests that require server startup."""
skip_integration = pytest.mark.skip(
reason="Integration tests require MCP server startup - skipped for now"
)
for item in items:
if "test_server.py" in str(item.fspath):
item.add_marker(skip_integration)