entity_definition
Pack: bungie · Endpoint: https://gateway.pipeworx.io/bungie/mcp
Single definition by type + hash.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | yes | |
hash_identifier | string | yes |
Example call
Arguments
{
"type": "DestinyInventoryItemDefinition",
"hash_identifier": "1274492908"
}
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":"entity_definition","arguments":{"type":"DestinyInventoryItemDefinition","hash_identifier":"1274492908"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('entity_definition', {
"type": "DestinyInventoryItemDefinition",
"hash_identifier": "1274492908"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Single definition by type and hash 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.