We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tao12345666333/civo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run-tests.shβ’712 B
#!/bin/bash
# Script to run tests for the Civo MCP project
set -e
echo "π Running Civo MCP Tests..."
echo "================================"
# Set required environment variables for testing
export CIVO_API_KEY="test-api-key"
# Run basic tests
echo "π Running basic tests..."
npm test
echo ""
echo "π Running tests with coverage..."
npm run test:coverage
echo ""
echo "β All tests completed successfully!"
echo "================================"
# Display test summary
echo "π Test Summary:"
echo "- All API endpoints tested"
echo "- Tool definitions verified"
echo "- Error handling validated"
echo "- Type safety confirmed"
echo ""
echo "π The Civo MCP server is ready for production!"