oh_revised_code

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

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, or use one-click install buttons:

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026