Twinkle HubTwinkle Hub
Sign in

📌 2026-08-17 added: ⚖️ Taiwan statute time machine — historical article text · revision history · full-text search · citation graph (935 datasets · 35,454+ rows)

View full changelog →

US Code section lookup

us_get_usc_section

TW-specificMIT

**關鍵字 / Keywords**: 美國法典 聯邦法典 USC 法條 章節 標題 us code title section statute govinfo copyright IRS tax health chapter

Scope: US Code (federal statutes) via GovInfo USCODE collection.

Look up one section of a US Code title (e.g. 17 USC §105 =
title 17 [Copyright], section 105 [Copyright of US Government
works — the public-domain rule invoked in every response's
`license` field on this server).

Endpoint:
    POST https://api.govinfo.gov/search
    (query: collection:USCODE AND "Sec. {section}")

Args:
    title: USC title number, e.g. 17 (Copyright), 26 (IRS),
           42 (Public Health), 5 (Government Organization).
    section: section number as string (`"105"`, `"1983"`, `"1a"`).
    year: USC edition year. Defaults to most recent (2024). USC
          is published annually ~December.

Returns dict with `heading` (section title from GovInfo MODS),
`package_id` (USCODE-{year}-title{N}), `granule_id`
(USCODE-{year}-title{N}-chap{M}-sec{X}), `date_issued`,
download URLs (`download_txt_url` for HTML text,
`download_pdf_url`, `download_mods_url` for XML metadata),
plus `other_matches[]` if the section appears in multiple
chapters. `original_url` links to www.govinfo.gov/app/details/.
License: US Public Domain. Requires `US_GOVINFO_API_KEY`.

Input schema

{
  "properties": {
    "title": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "string"
        }
      ],
      "title": "Title"
    },
    "section": {
      "title": "Section",
      "type": "string"
    },
    "year": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Year"
    }
  },
  "required": [
    "title",
    "section"
  ],
  "title": "us_get_usc_sectionArguments",
  "type": "object"
}

How to call

Once your Twinkle Hub MCP client is configured, your agent will see us_get_usc_section. Just ask it to call — example:

# Ask Claude / any MCP client:
請用 us_get_usc_section 處理 "…"。

# It will call:
us_get_usc_section(input="…")

Haven't set up a client yet?

Claude Desktop in 3 minutes — download the .mcpb and double-click, or see docs for other clients.

See user docs