vt_statute

Pack: vermont-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/vt_statute for the schema, then POST the same URL with its arguments for the data.

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

NameTypeRequiredDescription
titlestringyesVermont title number, e.g. “13” (crimes), “23” (motor vehicles), “15” (domestic relations).
sectionstringyesSection 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 — 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 vermont-code pack
{
  "mcpServers": {
    "vermont-code": {
      "url": "https://gateway.pipeworx.io/vermont-code/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 27, 2026