$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "type": "sse",
< "url": "https://mcp.api.coingecko.com/sse",
< "options": {
< "command": "python3",
< "args": [
< "app.py",
< "--port",
< 8080
< ],
< "env": {
< "LOG_LEVEL": "info",
< "API_KEY": "my_secret_key"
< }
< },
< "auth": {
< "type": "none",
< "token": "server_token_123",
< "username": "server_user",
< "password": "server_pass",
< "headers": {
< "Authorization": "Bearer ${token}",
< "X-API-Key": "token"
< }
< },
< "testCases": [
< {
< "name": "get_new_coins_list",
< "arguments": {},
< "actions": {
< "validate_input_schema": false,
< "validate_output_schema": false,
< "match_output_data": false
< },
< "input_schema": {},
< "output_schema": {},
< "expected_output": {}
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/acts/rocketagro~mcp-validator/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'