get_weapons

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

Browse Monster Hunter World weapons by type (e.g., ‘Great Sword’, ‘Bow’, ‘Hammer’). Returns damage, elements, and rarity to match your playstyle.

Parameters

NameTypeRequiredDescription
typestringnoFilter by weapon type. One of: great-sword, sword-and-shield, dual-blades, long-sword, hammer, hunting-horn, lance, gunlance, switch-axe, charge-blade, insect-glaive, light-bowgun, heavy-bowgun, bow. Omit to return all types.
limitnumbernoMaximum number of weapons to return. Defaults to 20.

Example call

Arguments

{
  "type": "great-sword",
  "limit": 15
}

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_weapons","arguments":{"type":"great-sword","limit":15}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_weapons', {
  "type": "great-sword",
  "limit": 15
});

More examples

{
  "type": "bow"
}

Response shape

Full JSON Schema
{
  "type": "array",
  "items": {
    "type": "object",
    "description": "Weapon 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