get_agent
Pack: valorant · Endpoint: https://gateway.pipeworx.io/valorant/mcp
VALORANT reference data (valorant-api.com) — full details for one agent by uuid: description, role, role description, and all abilities. Static game data, keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
uuid | string | yes | Agent uuid (from list_agents). |
Example call
Arguments
{
"uuid": "569fdd95-4d10-443c-83f0-19befe483e4f"
}
curl
curl -X POST https://gateway.pipeworx.io/valorant/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_agent","arguments":{"uuid":"569fdd95-4d10-443c-83f0-19befe483e4f"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_agent', {
"uuid": "569fdd95-4d10-443c-83f0-19befe483e4f"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"valorant": {
"url": "https://gateway.pipeworx.io/valorant/mcp"
}
}
}
See Getting Started for client-specific install steps.