wa_rcw_section
Pack: washington-code · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/wa_rcw_section for the schema, then POST the same URL with its arguments for the data.
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
| Name | Type | Required | Description |
|---|---|---|---|
section | string | yes | RCW 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 — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the washington-code pack
{
"mcpServers": {
"washington-code": {
"url": "https://gateway.pipeworx.io/washington-code/mcp"
}
}
}
See Getting Started for client-specific install steps.