We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zilliztech/zilliz-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_tests.shโข515 B
#!/bin/bash
echo "๐ Running Zilliz MCP Server Unit Tests..."
echo "============================================"
# Run all unit tests
echo "๐ฆ Installing test dependencies..."
uv add --group test pytest pytest-asyncio pytest-mock responses
echo "๐งช Running unit tests..."
uv run pytest tests/unit/ -v --tb=short
echo "โ Test run completed!"
echo ""
echo "๐ For test coverage report, run:"
echo " uv add pytest-cov"
echo " uv run pytest tests/unit/ --cov=src/zilliz_mcp_server --cov-report=html"