treasury_receipts

Pack: treasury-fiscal · Endpoint: https://gateway.pipeworx.io/treasury-fiscal/mcp

Get US government receipts by source: individual income tax, corporate tax, excise taxes, customs duties, and more.

Parameters

NameTypeRequiredDescription
limitnumbernoNumber of records to return (default 12)

Example call

Arguments

{
  "limit": 12
}

curl

curl -X POST https://gateway.pipeworx.io/treasury-fiscal/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"treasury_receipts","arguments":{"limit":12}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('treasury_receipts', {
  "limit": 12
});

More examples

{
  "limit": 36
}

Response shape

Always returns: description, count, total_available, records

FieldTypeDescription
descriptionstringDescription of the data
countnumberNumber of records returned
total_availablenumberTotal available records in the API
recordsarrayGovernment receipts by source
Full JSON Schema
{
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the data"
    },
    "count": {
      "type": "number",
      "description": "Number of records returned"
    },
    "total_available": {
      "type": "number",
      "description": "Total available records in the API"
    },
    "records": {
      "type": "array",
      "description": "Government receipts by source",
      "items": {
        "type": "object",
        "properties": {
          "record_date": {
            "type": "string",
            "description": "Date of the record"
          },
          "classification": {
            "type": "string",
            "description": "Classification description or code"
          },
          "current_month_amt": {
            "type": "number",
            "description": "Current month receipt/outlay amount"
          },
          "fiscal_year_amt": {
            "type": "number",
            "description": "Fiscal year receipt/outlay amount"
          },
          "line_code": {
            "type": "string",
            "description": "Line code number"
          },
          "table_name": {
            "type": "string",
            "description": "Table name"
          }
        }
      }
    }
  },
  "required": [
    "description",
    "count",
    "total_available",
    "records"
  ]
}

Connect

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

{
  "mcpServers": {
    "treasury-fiscal": {
      "url": "https://gateway.pipeworx.io/treasury-fiscal/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026