We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ervwalter/mcp-kanka'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•332 B
"""Integration tests package initialization."""
import sys
from pathlib import Path
# Add necessary paths at package import time
integration_dir = Path(__file__).parent
src_dir = integration_dir.parent.parent / "src"
for path in [integration_dir, src_dir]:
if str(path) not in sys.path:
sys.path.insert(0, str(path))