oh_revised_code

Pack: ohio-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/oh_revised_code for the schema, then POST the same URL with its arguments for the data.

Get the FULL TEXT of a section of the Ohio Revised Code — Ohio state statutes — by citation. “ORC 2903.02” is section 2903.02 (murder). Returns the statutory text and its effective date. Keyless. Use for “what does Ohio Revised Code 2903.02 say”, “text of ORC 4511.19”, or to check an Ohio statute a case relies on.

Parameters

NameTypeRequiredDescription
sectionstringyesSection as cited, e.g. “2903.02” or “4511.19”. Title and chapter are encoded in the number.

Example call

Arguments

{
  "section": "2903.02"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('oh_revised_code', {
  "section": "2903.02"
});

More examples

{
  "section": "4511.19"
}

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 ohio-code pack
{
  "mcpServers": {
    "ohio-code": {
      "url": "https://gateway.pipeworx.io/ohio-code/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026