We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/roizenlabs/sportintel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-actor-api.sh•498 B
#!/bin/bash
# Test the deployed Actor via Apify API
ACTOR_ID="OdaJN92JUkidz02uv"
echo "Testing SportIntel MCP Actor..."
echo "Actor ID: $ACTOR_ID"
echo ""
echo "Starting Actor run with NBA projections..."
echo ""
# Start an Actor run
apify call $ACTOR_ID --input '{
"mode": "batch",
"tool": "get_player_projections",
"arguments": {
"sport": "NBA"
}
}'
echo ""
echo "Test completed!"
echo ""
echo "To view full results, visit:"
echo "https://console.apify.com/actors/$ACTOR_ID/runs"