mn_statute

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

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

Parameters

NameTypeRequiredDescription
sectionstringyesSection as cited, e.g. “609.185” (murder 1) or “169A.20” (DWI).

Example call

Arguments

{
  "section": "609.185"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026