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