linked_profiles
Pack: bungie · Endpoint: https://gateway.pipeworx.io/bungie/mcp
Fetch all cross-platform Destiny 2 profiles linked to a Bungie.net membership_id/membership_type; optionally return all memberships including inactive ones.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
membership_type | number | yes | |
membership_id | string | yes | |
get_all_memberships | boolean | no |
Example call
Arguments
{
"membership_type": 3,
"membership_id": "4611686018429783292",
"get_all_memberships": true
}
curl
curl -X POST https://gateway.pipeworx.io/bungie/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"linked_profiles","arguments":{"membership_type":3,"membership_id":"4611686018429783292","get_all_memberships":true}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('linked_profiles', {
"membership_type": 3,
"membership_id": "4611686018429783292",
"get_all_memberships": true
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Cross-platform profiles response"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bungie": {
"url": "https://gateway.pipeworx.io/bungie/mcp"
}
}
}
See Getting Started for client-specific install steps.