Synergic APIs MCP Server
OfficialClick 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., "@Synergic APIs MCP ServerWhat is US inflation right now, headline and core?"
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.
Synergic APIs — MCP Server
Official Model Context Protocol server for Synergic APIs: official US economic data for AI agents. It gives Claude, Cursor, and any MCP-capable client direct access to:
US Inflation API — the official CPI-U from the Bureau of Labor Statistics: 11 categories, YoY/MoM rates computed like the BLS, monthly history back to 1913, official annual averages.
Famous prices — US average price of eggs, gasoline, milk, bread, ground beef, coffee and electricity, monthly since 1976.
US National Debt API — the U.S. Treasury debt to the penny, every business day since 1993, annual debt outstanding since 1790, and the average interest rates the Treasury pays.
All amounts are JSON numbers, periods are YYYY-MM / YYYY-MM-DD, and missing
months in the official record are served as null — never invented.
Requirements
Node.js 18.17+ (
npxincluded).A Synergic APIs key. Get one free (no credit card) at synergicapis.com/signup.html — 500 requests/month, both APIs, full history. Paid plans at synergicapis.com/pricing.html.
Related MCP server: econstats-mcp
Installation
The server runs over stdio via npx — no clone, no build.
Claude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"synergic-apis": {
"command": "npx",
"args": ["-y", "@synergic-apis/mcp"],
"env": {
"SYNERGIC_API_KEY": "YOUR_API_KEY"
}
}
}
}Claude Code
claude mcp add synergic-apis --env SYNERGIC_API_KEY=YOUR_API_KEY -- npx -y @synergic-apis/mcpCursor
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in your project):
{
"mcpServers": {
"synergic-apis": {
"command": "npx",
"args": ["-y", "@synergic-apis/mcp"],
"env": {
"SYNERGIC_API_KEY": "YOUR_API_KEY"
}
}
}
}Configuration
Variable | Required | Default | Description |
| yes | — | Your API key. Sent as |
| no |
| Gateway base URL (override for testing). |
Tools
Tool | What it does | Key arguments |
| Latest month of CPI for all 11 categories with YoY/MoM rates. |
|
| Monthly CPI history of one category (headline since 1913). |
|
| Official annual average CPI (M13, NSA). |
|
| Latest basket of famous US prices, or one item's monthly history. |
|
| The US national debt today, to the penny. | — |
| Daily debt (1993+, limit ≤100) or annual fiscal-year-end debt (1790+, |
|
| Latest Treasury avg interest rate per security class, or one class's monthly history (2001+). |
|
| Plan, requests used, monthly limit and reset date of your key. | — |
History tools paginate by period range: when a response's meta.next_end is not
null, call the tool again with end set to that value to get older data.
Try it
Ask your assistant things like:
"What is US inflation right now, headline and core?"
"Plot the price of eggs since 2020."
"How much did the US national debt grow in the last 12 months?"
"What rate does the Treasury pay on T-bills today vs 2021?"
Troubleshooting
"SYNERGIC_API_KEY is not set" — the server exits at startup if the key is missing. Add it to the
envblock of your MCP client config (see above) and restart the client."Invalid API key" — the gateway rejected the key (typo or revoked). Keys look like
sk_.... Get a fresh one at synergicapis.com/signup.html."Rate limit exceeded … retry after Xs" — you hit your plan's per-minute limit (free: 10 req/min). Wait and retry.
"Monthly quota exhausted" — you used the month's requests (free: 500). Ask the agent to call
get_my_usagefor details, wait for the 1st (UTC), or upgrade at synergicapis.com/pricing.html.Tools don't appear in the client — check the client's MCP logs; the most common causes are an old Node (needs 18.17+) or
npxnot on the PATH used by the client. Runningnpx -y @synergic-apis/mcpin a terminal should printready on stdioto stderr and then wait for input.Corporate proxy / self-hosted testing — point
SYNERGIC_GATEWAY_URLat your gateway; the server only ever issues GET requests withX-Api-Key.
Development
npm install
npm run typecheck # tsc --noEmit (strict)
npm test # vitest — tool→request mapping + error mapping, fetch mocked
npm run build # emits dist/ and the synergic-apis-mcp binData sources & license
Data: U.S. Bureau of Labor Statistics and U.S. Treasury Fiscal Data (public domain; this product is not endorsed by or affiliated with either agency). Code: MIT.
Maintenance
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
- Flicense-qualityDmaintenanceAn MCP server that wraps the Federal Reserve Economic Data (FRED) API, providing access to over 800,000 economic time series like GDP and unemployment. It enables AI agents to search for data, retrieve metadata, and fetch historical observations directly from the St. Louis Fed.Last updated
- Flicense-qualityDmaintenanceEconomic data MCP server that connects FRED, BLS, BEA, IMF, World Bank, and ECB to any MCP-compatible client, with built-in methodology rules to guide LLMs in selecting appropriate economic indicators.Last updated
- FlicenseAqualityCmaintenanceA local MCP server that gives Claude and other MCP clients access to Federal Reserve Economic Data (FRED) — 800,000+ economic time series covering GDP, inflation, employment, interest rates, and more.Last updated31
- AlicenseAqualityDmaintenanceAn MCP server that provides AI assistants with access to over 40 Bank of Japan statistical databases (interest rates, money supply, exchange rates, tankan, etc.) via the BOJ time-series data search API.Last updated422MIT
Related MCP Connectors
MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Fetch US Bureau of Labor Statistics data — CPI, unemployment, wages, JOLTS, and more via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Synergic-APIs/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server