ct_general_statute
Pack: connecticut-code · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ct_general_statute for the schema, then POST the same URL with its arguments for the data.
Get the FULL TEXT of a section of the Connecticut General Statutes — Connecticut state law — by citation. “Conn. Gen. Stat. 53a-54a” is murder. Returns the statutory text. Keyless. Use for “what does Connecticut General Statutes 53a-54a say” or to check a CT statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
section | string | yes | Section as cited, e.g. “53a-54a” (murder) or “14-227a” (DUI). The part before the dash is the title. |
Example call
Arguments
{
"section": "53a-54a"
}
curl
curl -X POST https://gateway.pipeworx.io/connecticut-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ct_general_statute","arguments":{"section":"53a-54a"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ct_general_statute', {
"section": "53a-54a"
});
Connect
Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the connecticut-code pack
{
"mcpServers": {
"connecticut-code": {
"url": "https://gateway.pipeworx.io/connecticut-code/mcp"
}
}
}
See Getting Started for client-specific install steps.