mt_code_section
Pack: montana-code · Endpoint: https://gateway.pipeworx.io/montana-code/mcp
Get the FULL TEXT of a section of the Montana Code Annotated — Montana state law — by citation. “MCA 45-5-102” is deliberate homicide. Returns the statutory text. Keyless. Use for “what does MCA 45-5-102 say” or to check a Montana statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
section | string | yes | Section as cited, e.g. “45-5-102” (deliberate homicide) or “61-8-401” (DUI). Title-chapter-section. |
Example call
Arguments
{
"section": "45-5-102"
}
curl
curl -X POST https://gateway.pipeworx.io/montana-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mt_code_section","arguments":{"section":"45-5-102"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mt_code_section', {
"section": "45-5-102"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"montana-code": {
"url": "https://gateway.pipeworx.io/montana-code/mcp"
}
}
}
See Getting Started for client-specific install steps.