get_skills

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

Look up Monster Hunter World skills by name. Returns descriptions, max ranks, and level-by-level effects to optimize your build.

Parameters

NameTypeRequiredDescription
limitnumbernoMaximum number of skills to return. Defaults to 20.

Example call

Arguments

{
  "limit": 20
}

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_skills","arguments":{"limit":20}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

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