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