player_bans
Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp
Check VAC ban, community ban, and economy ban status for one or more comma-separated SteamID64s. Returns CommunityBanned, VACBanned, NumberOfVACBans, DaysSinceLastBan.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
steamids | string | yes |
Example call
Arguments
{
"steamids": "76561198000000000,76561198000000001"
}
curl
curl -X POST https://gateway.pipeworx.io/steam/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"player_bans","arguments":{"steamids":"76561198000000000,76561198000000001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('player_bans', {
"steamids": "76561198000000000,76561198000000001"
});
Response shape
| Field | Type | Description |
|---|---|---|
players | array |
Full JSON Schema
{
"type": "object",
"properties": {
"players": {
"type": "array",
"items": {
"type": "object",
"properties": {
"SteamId": {
"type": "string",
"description": "SteamID64"
},
"CommunityBanned": {
"type": "boolean",
"description": "Community ban status"
},
"VACBanned": {
"type": "boolean",
"description": "VAC ban status"
},
"NumberOfVACBans": {
"type": "number",
"description": "Number of VAC bans"
},
"DaysSinceLastBan": {
"type": "number",
"description": "Days since last ban"
},
"NumberOfGameBans": {
"type": "number",
"description": "Number of game bans"
},
"EconomyBan": {
"type": "string",
"description": "Economy ban status"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"steam": {
"url": "https://gateway.pipeworx.io/steam/mcp"
}
}
}
See Getting Started for client-specific install steps.