wa_rcw_section

Pack: washington-code · Endpoint: https://gateway.pipeworx.io/washington-code/mcp

Get the FULL TEXT of a section of the Revised Code of Washington (RCW) — Washington state statutes — by citation. “RCW 9A.32.030” is first degree murder. Returns the statutory text and its heading. Keyless. Use for “what does RCW 46.61.502 say”, “text of RCW 49.60.180”, or to check a Washington statute a case relies on.

Parameters

NameTypeRequiredDescription
sectionstringyesRCW citation, e.g. “9A.32.030” or “46.61.502”. Title.chapter.section.

Example call

Arguments

{
  "section": "9A.32.030"
}

curl

curl -X POST https://gateway.pipeworx.io/washington-code/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"wa_rcw_section","arguments":{"section":"9A.32.030"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('wa_rcw_section', {
  "section": "9A.32.030"
});

More examples

{
  "section": "46.61.502"
}

Connect

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

{
  "mcpServers": {
    "washington-code": {
      "url": "https://gateway.pipeworx.io/washington-code/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026