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