usc_section
Pack: us-code · Endpoint: https://gateway.pipeworx.io/us-code/mcp
Get the FULL TEXT of a section of the United States Code — federal statutes — by citation. “18 U.S.C. 1343” is title 18, section 1343. Returns the statutory text, its title and chapter, and the edition it came from. Keyless. Use for “what does the wire fraud statute say”, “what is the text of 42 USC 1983”, or to check what a statute a case relies on actually provides.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | US Code title number, 1-54. E.g. “18” for crimes, “26” for tax, “42” for public health and welfare. |
section | string | yes | Section number as cited, e.g. “1343” or “1983”. Subsections like “1343(a)” are not separate documents — pass the section. |
Example call
Arguments
{
"title": "18",
"section": "1343"
}
curl
curl -X POST https://gateway.pipeworx.io/us-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"usc_section","arguments":{"title":"18","section":"1343"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('usc_section', {
"title": "18",
"section": "1343"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"us-code": {
"url": "https://gateway.pipeworx.io/us-code/mcp"
}
}
}
See Getting Started for client-specific install steps.