az_revised_statute
Pack: arizona-code · Endpoint: https://gateway.pipeworx.io/arizona-code/mcp
Get the FULL TEXT of a section of the Arizona Revised Statutes — Arizona state law — by citation. “A.R.S. 13-1105” is first degree murder. Returns the statutory text. Keyless. Use for “what does Arizona Revised Statute 13-1105 say” or to check an Arizona statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
section | string | yes | Section as cited, e.g. “13-1105” or “28-1381”. Title is the part before the dash. |
Example call
Arguments
{
"section": "13-1105"
}
curl
curl -X POST https://gateway.pipeworx.io/arizona-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"az_revised_statute","arguments":{"section":"13-1105"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('az_revised_statute', {
"section": "13-1105"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"arizona-code": {
"url": "https://gateway.pipeworx.io/arizona-code/mcp"
}
}
}
See Getting Started for client-specific install steps.