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