get_armor

Pack: mhw · Endpoint: https://gateway.pipeworx.io/mhw/mcp

Find Monster Hunter World armor by rank and type. Returns defense, elemental resistances, and skill slots for building effective sets.

Parameters

NameTypeRequiredDescription
limitnumbernoMaximum number of armor pieces to return. Defaults to 20.

Example call

Arguments

{
  "limit": 25
}

curl

curl -X POST https://gateway.pipeworx.io/mhw/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_armor","arguments":{"limit":25}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_armor', {
  "limit": 25
});

Response shape

Full JSON Schema
{
  "type": "array",
  "items": {
    "type": "object",
    "description": "Armor piece data from MHW database"
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mhw": {
      "url": "https://gateway.pipeworx.io/mhw/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026