ma_general_law
Pack: massachusetts-code · Endpoint: https://gateway.pipeworx.io/massachusetts-code/mcp
Get the FULL TEXT of a section of the Massachusetts General Laws — Massachusetts state statutes — by citation. “M.G.L. c. 265, s. 1” is chapter 265 section 1 (murder). Returns the statutory text. Keyless. Use for “what does Massachusetts General Law chapter 90 section 24 say” or to check a Massachusetts statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chapter | string | yes | Chapter number, e.g. “265” (crimes against the person) or “90” (motor vehicles). |
section | string | yes | Section within the chapter, e.g. “1” or “24”. |
Example call
Arguments
{
"chapter": "265",
"section": "1"
}
curl
curl -X POST https://gateway.pipeworx.io/massachusetts-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ma_general_law","arguments":{"chapter":"265","section":"1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ma_general_law', {
"chapter": "265",
"section": "1"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"massachusetts-code": {
"url": "https://gateway.pipeworx.io/massachusetts-code/mcp"
}
}
}
See Getting Started for client-specific install steps.