me_revised_statute
Pack: maine-code · Endpoint: https://gateway.pipeworx.io/maine-code/mcp
Get the FULL TEXT of a section of the Maine Revised Statutes — Maine state law — by citation. “17-A M.R.S. 201” is murder. Returns the statutory text. Keyless. Use for “what does Maine Title 17-A section 201 say” or to check a Maine statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | Maine title, e.g. “17-A” (crimes), “29-A” (motor vehicles), “19-A” (domestic relations). |
section | string | yes | Section within the title, e.g. “201” (murder) or “2411” (OUI). |
Example call
Arguments
{
"title": "17-A",
"section": "201"
}
curl
curl -X POST https://gateway.pipeworx.io/maine-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"me_revised_statute","arguments":{"title":"17-A","section":"201"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('me_revised_statute', {
"title": "17-A",
"section": "201"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"maine-code": {
"url": "https://gateway.pipeworx.io/maine-code/mcp"
}
}
}
See Getting Started for client-specific install steps.