CNBS MCP Server
Supports deployment on Cloudflare Workers platform with authentication token configuration via Wrangler CLI and Cloudflare dashboard secrets for secure serverless operation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CNBS MCP Servershow me China's GDP trend over the last 5 years"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CNBS MCP Server
MCP server for querying China National Bureau of Statistics (NBS) data and major international statistical databases. All data is fetched from real APIs — no mock data.
Data Sources
Source | Auth | Coverage |
China NBS (data.stats.gov.cn) | None | Monthly / Quarterly / Yearly / Provincial domestic data |
World Bank (api.worldbank.org) | None | 200+ countries — GDP, CPI, trade, population, FDI, Gini, etc. |
IMF DataMapper | None | WEO forecasts — GDP growth, inflation, government debt, current account |
OECD SDMX | None | Member-country quarterly GDP, employment, leading indicators |
BIS Statistics | None | Effective exchange rates, credit gaps, property prices, cross-border banking |
FRED (Federal Reserve) |
| US rates, CNY/USD, oil, gold, S&P 500, M2 |
NBS Census | None | Population (2020), Economic (2018), Agriculture (2016) censuses |
NBS Departments | None | Finance, Industry, Trade, Agriculture, PBoC monetary, Social Security, Housing, Energy |
FRED API Key: Free registration at https://fred.stlouisfed.org/docs/api/api_key.html
Pass it as theX-Fred-Api-Keyrequest header (HTTP mode) or setFRED_API_KEYenv var (stdio mode).
Installation
npx (Recommended)
npx mcp-cnbsHTTP transport
npx mcp-cnbs --port 12345Install globally
npm install -g mcp-cnbs
mcp-cnbsMCP Client Configuration
stdio mode (npx)
Supported clients: Claude Desktop, Cursor, Windsurf, Cherry Studio, Trae, Continue, and all MCP-compatible clients.
{
"mcpServers": {
"cnbs": {
"command": "npx",
"args": ["mcp-cnbs"]
}
}
}With FRED support:
{
"mcpServers": {
"cnbs": {
"command": "npx",
"args": ["mcp-cnbs"],
"env": {
"FRED_API_KEY": "your_fred_api_key"
}
}
}
}HTTP mode (remote)
Supported clients: Trae, Cherry Studio, and other clients with HTTP transport support.
Free demo on ModelScope (no FRED):
{
"mcpServers": {
"cnbs": {
"url": "https://mcp.api-inference.modelscope.net/c2ca6ece4e9946/mcp"
}
}
}HTTP mode with FRED:
{
"mcpServers": {
"cnbs": {
"url": "https://your-cnbs-server/mcp",
"headers": {
"X-Fred-Api-Key": "your_fred_api_key"
}
}
}
}Free public demo by Alibaba Cloud ModelScope. No auth required.
For production use, deploy your own instance.
HTTP Endpoints
Endpoint | Method | Description |
| POST | Streamable HTTP — initialize session or send requests |
| GET | SSE notification stream (requires |
| DELETE | Terminate session (requires |
| GET | Legacy SSE mode |
| POST | Legacy SSE messages |
Tools
NBS Core Query
Tool | Description |
| Search by keyword, returns latest value — start here |
| Batch search multiple keywords in one call |
| One-shot snapshot of 10 key Chinese macro indicators (GDP, CPI, PPI, PMI, unemployment, industrial output, retail sales, fixed investment, trade, M2) |
| Compare data across regions or time periods |
| Get category tree nodes — accepts one or multiple categories |
| Get indicator list — accepts one or multiple |
| Get time series data |
| Recursively get all leaf nodes |
NBS Reference
Tool | Description |
| Full tool guide (useful for LLMs to self-orient) |
| Region codes and names (GB/T 2260) |
| NBS category codes |
| All available data sources with tool mappings |
| Fetch data from any named source |
| Categories for a given source |
| Search within a specific source |
World Bank
Tool | Description |
| Query a single indicator across countries and years |
| Query multiple indicators at once |
| List all supported World Bank indicators |
IMF
Tool | Description |
| Query IMF WEO data — accepts one or multiple indicators |
| List supported IMF indicators |
| Full IMF DataMapper indicator catalog |
OECD
Tool | Description |
| Query OECD SDMX data by dataset and key |
| List supported OECD datasets |
BIS
Tool | Description |
| Query BIS statistics — accepts one or multiple countries |
| List supported BIS datasets with key templates |
FRED (Federal Reserve)
Tool | Description |
| Query FRED series — accepts one or multiple series |
| List all supported FRED series |
China Extended Sources
Tool | Description |
| NBS census data (population, economic, agriculture) |
| NBS department statistics by ministry |
| All department categories and indicator keywords |
Cross-Source Comparison
Tool | Description |
| Simultaneously query World Bank + IMF for the same indicator across countries |
Quick Examples
China Economy At a Glance
// Full macro snapshot in one call
cnbs_economic_snapshot()
// Latest single indicator
cnbs_search(keyword="GDP")
// Batch indicators
cnbs_batch_search(keywords=["GDP", "CPI", "城镇化率", "出生率"])
// Regional comparison
cnbs_compare(keyword="GDP", regions=["北京", "上海", "广东"], compareType="region")
// Time series
cnbs_fetch_series(setId="...", metricIds=["..."], periods=["2015YY-2024YY"])International Comparison
// China GDP growth vs peers (World Bank)
ext_world_bank(indicator="GDP_GROWTH", countries=["CHN","USA","DEU","JPN","IND"], startYear=2015)
// Multiple indicators for China
ext_world_bank_multi(indicators=["GDP_GROWTH","CPI","UNEMPLOYMENT"], countries=["CHN"], startYear=2010)
// IMF: single indicator
ext_imf(indicators="GDP_GROWTH", countries=["CHN","USA","JPN"], periods=["2022","2023","2024","2025"])
// IMF: multiple indicators in one call
ext_imf(indicators=["GDP_GROWTH","CPI_INFLATION","GOVT_DEBT"], countries=["CHN","USA"], periods=["2020","2021","2022","2023","2024"])
// World Bank + IMF side-by-side
ext_global_compare(wbIndicator="GDP_GROWTH", imfIndicator="GDP_GROWTH", countries=["CHN","USA","DEU","JPN"])BIS & FRED
// BIS: single country
ext_bis(dataset="EER", countries="CN", lastNObservations=36)
// BIS: multiple countries in one call
ext_bis(dataset="EER", countries=["CN","US","DE","JP"], lastNObservations=24)
// BIS: credit gap
ext_bis(dataset="CREDIT_GAP", countries=["CN","US"], lastNObservations=20)
// FRED: single series
ext_fred(series="OIL_PRICE_WTI", limit=100, sortOrder="desc")
// FRED: multiple series in one call
ext_fred(series=["FED_FUNDS","CNY_USD","OIL_PRICE_WTI","GOLD_PRICE"], limit=30, sortOrder="desc")NBS Census & Departments
// 2020 Population census
ext_cn_census(type="population")
// PBoC M2 monetary data
ext_cn_department(department="monetary", indicator="M2货币供应量")
// All finance ministry indicators
ext_cn_department(department="finance", fetchAll=true)NBS Category Codes
Code | Category | Typical Indicators |
1 | Monthly | CPI, PPI, Industrial Output, PMI |
2 | Quarterly | GDP quarterly growth |
3 | Annual | GDP, population, urbanization rate |
5 | Provincial Quarterly | Provincial GDP by quarter |
6 | Provincial Annual | Provincial GDP, population by year |
7 | Other / Surveys | Household surveys, special surveys |
NBS Time Format
Annual:
2024YY, range["2020YY-2024YY"]Quarterly:
2024A/B/C/D(A=Q1, B=Q2, C=Q3, D=Q4), shortcutsLAST6/LAST12/LAST18Monthly:
202401MM, range["202301MM-202412MM"]
NBS Region Codes
Follows GB/T 2260 standard. Use cnbs_get_regions for the full list.
Region | Code |
National |
|
Beijing |
|
Shanghai |
|
Guangdong |
|
Zhejiang |
|
Jiangsu |
|
Authentication
No authentication required by default. Enable Bearer token auth:
stdio / HTTP mode
npx mcp-cnbs --port 12345 --auth-token your-secret-token
# or via env var
MCP_CNBS_AUTH_TOKEN=your-secret-token npx mcp-cnbs --port 12345Requests must then include:
Authorization: Bearer your-secret-tokenCloudflare Workers
npx wrangler secret put MCP_CNBS_AUTH_TOKENDevelopment
npm install
npm run build
npm run startRequirements
Node.js >= 18.0.0
Network access to
data.stats.gov.cn,api.worldbank.org,www.imf.org,sdmx.oecd.org,stats.bis.org,api.stlouisfed.org
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
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/icen-ai/mcp-cnbs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server