mo_revised_statute

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

Get the FULL TEXT of a section of the Missouri Revised Statutes — Missouri state law — by citation. “RSMo 565.020” is first degree murder. Returns the statutory text. Keyless. Use for “what does Mo. Rev. Stat. 565.020 say” or to check a statute a case relies on.

Parameters

NameTypeRequiredDescription
sectionstringyesSection as cited, e.g. “565.020” (murder 1) or “577.010” (DWI).

Example call

Arguments

{
  "section": "565.020"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Connect

Add this to your MCP client config, or use one-click install buttons:

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026