wv_code_section

Pack: west-virginia-code · Endpoint: https://gateway.pipeworx.io/west-virginia-code/mcp

Get the FULL TEXT of a section of the West Virginia Code — West Virginia state law — by citation. “W. Va. Code 61-2-1” is first degree murder. Returns the statutory text. Keyless. Use for “what does West Virginia Code 61-2-1 say” or to check a WV statute a case relies on.

Parameters

NameTypeRequiredDescription
sectionstringyesSection as cited, e.g. “61-2-1” (murder) or “17C-5-2” (DUI). Chapter-article-section.

Example call

Arguments

{
  "section": "61-2-1"
}

curl

curl -X POST https://gateway.pipeworx.io/west-virginia-code/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"wv_code_section","arguments":{"section":"61-2-1"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('wv_code_section', {
  "section": "61-2-1"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "west-virginia-code": {
      "url": "https://gateway.pipeworx.io/west-virginia-code/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 13, 2026