Skip to main content
Glama
jslagle9

census-trade-mcp-server

by jslagle9

census-trade-mcp-server

An MCP (Model Context Protocol) server for the U.S. Census Bureau's International Trade Data API — monthly U.S. export and import statistics, January 2010–present, by Harmonized System (HS), NAICS, End-Use, SITC, USDA (Ag/Non-Ag), and Advanced Technology classifications, plus state- and port-level detail.

Setup

  1. Get a free Census API key: https://api.census.gov/data/key_signup.html (you'll get an email with an activation link — click it before using the key).

  2. Install dependencies and build:

    npm install
    npm run build
  3. Set your API key:

    cp .env.example .env
    # edit .env and set CENSUS_API_KEY
  4. Add to your MCP client (e.g. Claude Desktop / Claude Code config):

    {
      "mcpServers": {
        "census-trade": {
          "command": "node",
          "args": ["/absolute/path/to/census-trade-mcp-server/dist/index.js"],
          "env": { "CENSUS_API_KEY": "your_40_character_key_here" }
        }
      }
    }

By default the server runs over stdio. Set TRANSPORT=http (and optionally PORT) to run it as a local streamable-HTTP server instead (binds to 127.0.0.1 only).

Related MCP server: mcp-comtrade

Tools

Tool

Purpose

census_trade_list_datasets

Describes the 9 available datasets (hs, naics, enduse, sitc, usda, hitech, statehs, statenaics, porths) and what geography/detail each supports.

census_trade_get_dataset_variables

Fetches the valid field names for a given dataset + direction straight from Census's own metadata, to avoid "unknown variable" errors.

census_trade_query_exports

General-purpose query tool for U.S. export data — any dataset, country/commodity/district/state/port filters, time range.

census_trade_query_imports

Same, for U.S. import data.

census_trade_get_trade_balance

Workflow tool: computes exports − imports for one or more countries/groupings over a period in a single call.

census_trade_get_top_partners

Workflow tool: ranks countries by export/import value for a period — the Census API itself doesn't sort results, so this does it for you.

census_trade_lookup_country_code

Looks up the numeric CTY_CODE (Schedule C) needed to filter by country, region, or trade bloc (e.g. NAFTA, EU, OPEC). Works offline, no API key needed.

Testing

  • node scripts/smoke-test.mjs — starts the server, lists tools, and exercises the two tools that don't require a live Census API call. No real API key needed.

  • CENSUS_API_KEY=<real key> node scripts/live-test.mjs — exercises real Census API calls end-to-end (needs a real key and outbound network access to api.census.gov).

Evaluations

evaluation/questions.xml has 10 verified Q&A pairs for testing how well an LLM can use this server, built on the mcp-builder evaluation harness (evaluation/evaluation.py). All questions use January/June 2013 data — final, long-settled figures chosen so the answers never change.

pip install -r evaluation/requirements.txt
export ANTHROPIC_API_KEY=your_api_key
python evaluation/evaluation.py \
  -t stdio -c node -a dist/index.js \
  -e CENSUS_API_KEY=<your census key> \
  -o evaluation/report.md \
  evaluation/questions.xml

Notes on the underlying API

  • Filtering by country uses a numeric CTY_CODE (Schedule C), not the country name — use census_trade_lookup_country_code to translate.

  • Descriptive text fields (CTY_NAME, DIST_NAME, *_LDESC, etc.) require their matching code field also be requested, or the API errors.

  • Don't mix commodity-classification parameters across datasets (e.g. don't filter by NAICS on the hs dataset).

  • Large, unfiltered queries (e.g. all countries × all 10-digit HS codes) commonly time out — narrow with filters or split wildcard queries (E_COMMODITY=1*, then 2*, etc.) and combine client-side.

  • A response with zero rows isn't necessarily an error — it can just mean no trade occurred for that filter combination.

Full reference: Census International Trade Data API User Guide (PDF).

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Provides access to UN Comtrade international bilateral trade data via an MCP server, enabling AI agents to query trade statistics through natural language.
    9
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides access to US Census Bureau International Trade data, enabling querying trade statistics through natural language using ask_pipeworx.
    7
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    MCP server for fetching US Bureau of Labor Statistics data including CPI, unemployment, wages, JOLTS, and more. Provides 7 tools for survey discovery, SeriesID resolution, and data retrieval via STDIO or Streamable HTTP.
    85
    1
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Census Trade MCP — US Census Bureau International Trade data

  • Comtrade MCP — UN Comtrade API for international bilateral trade data

  • MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jslagle9/uscensus-intl-trade-api-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server