CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
pipeworx-io avatar

Comtrade

pipeworx-io/mcp-comtrade
HTTPregistry active
Summary

Connects Claude to the UN Comtrade database for querying international bilateral trade statistics. The source documentation is sparse on specifics, but this gives you programmatic access to trade flow data between countries, commodity classifications, and historical trade records through the official UN API. Useful when you need to pull import/export figures, analyze trade patterns between specific nations, or research commodity movements without manually navigating the UN's web interface. Part of the Pipeworx gateway system, which means you can either use this standalone endpoint or access it alongside 673+ other data sources through their unified gateway. Supports plain English queries via their ask_pipeworx wrapper instead of direct tool calls.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

UN Comtrade — Bilateral Trade Statistics

The United Nations Statistics Division's Commodity Trade Database. Bilateral trade flows between every reporting country and every partner country, broken down by commodity (HS codes), going back decades. The standard source for "who exports what to whom" at country level.

Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.

Why this matters for AI agents

If an agent is answering anything about international trade — bilateral relationships, commodity flows, tariffs in context, supply-chain concentration — Comtrade is the source. The data is structured (HS codes) and harmonized across countries, making cross-country comparison reliable.

Common flows:

  • Bilateral analysis. "US-China trade flows in 2024." → comtrade_trade_data({reporter_code: "842", partner_code: "156", year: "2024"}) → imports + exports + balance.
  • Top commodities. "What does the US import most from China?" → comtrade_top_commodities({reporter_code, partner_code, flow: "M"}).
  • Top partners. "Who are the top buyers of US semiconductors?" → comtrade_top_partners({reporter_code, hs_code: "8542", flow: "X"}).
  • Country code lookup. ISO 3-digit numeric codes — comtrade_country_codes returns the full mapping.

Used by the trade_bilateral_analysis and trade_country_profile compounds.

Auth

Comtrade has free and premium tiers. The free tier is heavily rate-limited (a few requests per minute). For higher volumes, register at https://comtradeplus.un.org and pass an API key via _apiKey.

Country and commodity codes

TypeFormatExample
CountryISO 3166-1 numeric842 (US), 156 (China), 484 (Mexico)
CommodityHS chapter / heading / subheading85 (electrical), 8517 (telephones), 851712 (smartphones)
FlowM / X / re-import / re-exportM = imports, X = exports

comtrade_country_codes returns the full mapping. Most agents pass the 3-digit numeric to avoid name-disambiguation problems.

Update cadence

Comtrade releases data with a substantial lag — typically 6–12 months after the calendar year. The most recent year you can query is usually last calendar year. Pipeworx caches with 30-day TTL since this data is essentially static once published.

Common pitfalls

  • Reporter vs. partner mirror data. Both sides of a trade report it (the US reports imports from China; China reports exports to the US). Numbers don't perfectly match — different valuation methods (CIF vs FOB), shipping treatment, classification differences. Reporter-side is the convention; if you need both, request both.
  • HS revision changes. The HS classification updates every 5 years (HS17, HS22, etc.). Long time-series straddle revisions; codes for the same commodity can shift. Comtrade harmonizes for you in standard queries.
  • Service trade NOT included. Comtrade is goods only. Service trade lives separately (BEA / WTO data). Don't conflate.
  • Re-exports. Hong Kong's "exports to the US" include massive re-exports of Chinese-origin goods. The flow parameter distinguishes; use it explicitly.
  • Currency. Default values are USD — but check the unit field. Some series report quantity (kg, units) only without value.
  • Unreported pairs. Not every country reports to Comtrade every year. Cuba, Iran, North Korea have major gaps. Mirror data from partners can fill the holes — query the partner's reports of trade with that country.

Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "comtrade": {
      "url": "https://gateway.pipeworx.io/comtrade/mcp"
    }
  }
}

What this endpoint actually serves

tools/list at https://gateway.pipeworx.io/comtrade/mcp returns the tools in the table above plus the shared Pipeworx meta-tools — ask_pipeworx, discover_tools, search_within, remember/recall and the rest of the gateway-wide set. So the tool count you see is larger than this table: a single-pack endpoint currently lists roughly 30 shared tools alongside the pack's own. The connection's initialize response states its exact scope, and is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a scoped connection answer a question this pack does not cover — via ask_pipeworx, which routes across the whole catalog — without you adding a second MCP server. There is currently no way to mount a pack endpoint without them; if the extra schemas cost you more context than the routing is worth, connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:

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

Both URLs reach the same gateway and the same 1476+ data sources. The only difference is which pack's tools are listed directly; ask_pipeworx reaches all of them from either one.

Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:

ask_pipeworx({ question: "your question about Comtrade data" })

The gateway picks the right tool and fills the arguments automatically.

More

  • Docs and guides
  • pipeworx.io

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Data & Analytics
Registryactive
TransportHTTP
UpdatedApr 22, 2026
View on GitHub

More from pipeworx-io

  • Confluence
  • Conspiracy Theory
  • Corporate Apology
  • Could Have Been Email
  • countries
  • crypto
  • Cryptocompare
  • Cso Ie
  • Czso Cz
  • dadjokes
  • Dailymed
  • Dane Gov Pl
  • Data Cityofchicago
  • Data Europa
  • Data Gov In
  • Data Gov Sg
  • Data Ny
  • Datacite
  • Datacube Sk
  • Datagov Ie
  • Datagov Il
  • Datagov Uk
  • Dataverse Harvard
  • Dati It

Related Data & Analytics MCP Servers

View all →
pipeworx-io avatar
Congress

io.github.pipeworx-io/congress

Congress MCP — US Congress data via GovTrack API (free, no auth required)
pipeworx-io avatar
countries

io.github.pipeworx-io/countries

Countries MCP — world country data from REST Countries API v3.1
pipeworx-io avatar
Cricket

io.github.pipeworx-io/cricket

Cricket MCP — wraps CricAPI (api.cricapi.com) for live cricket data.
pipeworx-io avatar
Czso Cz

io.github.pipeworx-io/czso-cz

Czech Statistical Office (Český statistický úřad, ČSÚ) open-data MCP.
pipeworx-io avatar
Dados Pt

io.github.pipeworx-io/dados-pt

dados.gov.pt MCP — Portugal's national open data portal.
pipeworx-io avatar
Dane Gov Pl

io.github.pipeworx-io/dane-gov-pl

dane.gov.pl — Poland's national open data portal (Otwarte Dane).