friend_list
Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp
List a Steam user’s friend list by SteamID64; optionally filter by relationship type (friend or all). Returns array of SteamID64s and relationship status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
steamid | string | yes | |
relationship | string | no |
Example call
Arguments
{
"steamid": "76561198000000000"
}
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":"friend_list","arguments":{"steamid":"76561198000000000"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('friend_list', {
"steamid": "76561198000000000"
});
More examples
{
"steamid": "76561198000000000",
"relationship": "friend"
}
Response shape
| Field | Type | Description |
|---|---|---|
friendslist | object |
Full JSON Schema
{
"type": "object",
"properties": {
"friendslist": {
"type": "object",
"properties": {
"friends": {
"type": "array",
"items": {
"type": "object",
"properties": {
"steamid": {
"type": "string",
"description": "Friend's SteamID64"
},
"relationship": {
"type": "string",
"description": "Relationship type (e.g., 'friend')"
},
"friend_since": {
"type": "number",
"description": "Friendship start Unix timestamp"
}
}
}
}
}
}
}
}
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.