sc_code_section

Pack: south-carolina-code · Endpoint: https://gateway.pipeworx.io/south-carolina-code/mcp

Get the FULL TEXT of a section of the South Carolina Code of Laws — South Carolina state statutes — by citation. “S.C. Code 16-3-10” is murder. Returns the statutory text. Keyless. Use for “what does South Carolina Code 16-3-10 say” or to check an SC statute a case relies on.

Parameters

NameTypeRequiredDescription
sectionstringyesSection as cited, e.g. “16-3-10” (murder) or “56-5-2930” (DUI). Title-chapter-section.

Example call

Arguments

{
  "section": "16-3-10"
}

curl

curl -X POST https://gateway.pipeworx.io/south-carolina-code/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sc_code_section","arguments":{"section":"16-3-10"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('sc_code_section', {
  "section": "16-3-10"
});

Connect

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

{
  "mcpServers": {
    "south-carolina-code": {
      "url": "https://gateway.pipeworx.io/south-carolina-code/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026