We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/benro/personal-productivity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test.sh•283 B
#!/bin/bash
# Run tests inside Docker container
set -e
echo "🧪 Running tests..."
echo "==================="
# Make sure the container is built
docker-compose build
# Run pytest in the container
docker-compose run --rm mcp-server pytest -v
echo ""
echo "✅ Tests completed!"