What This Server Does
#Two MCP Tools
list_indicators- data dictionary, full metadata per indicator. The catalog of available indicators is also embedded in the tool description so the agent sees it at discovery time without a tool call.get_series- time series, one or more indicators, wide format (one row per date, one column per indicator). Date filters optional.
Coverage
- ~300 curated macro and credit-stress indicators
- US, India, EU, and global series
- Daily, weekly, monthly, quarterly frequencies
- SA and NSA flags, first/last dates, record counts in the dictionary
Limits
- Max 10 indicators per
get_seriescall - Max 10,000 rows per response
- 60 req/min per IP
MCP Configuration
#Recommended - Streamable HTTP
https://api.tigzig.com/tremor/v1/mcp/http
Newer MCP spec (2025-03-26). Single endpoint, serverless-friendly. Try this first.
Fallback - SSE
https://api.tigzig.com/tremor/v1/mcp/sse
Legacy MCP transport (2024-11-05). Use if your client does not yet speak Streamable HTTP.
Adding to Claude.ai
- Open Claude.ai - Settings - Connectors
- Add custom connector, paste the Streamable HTTP URL
- If it does not connect, swap to the SSE URL
- Approve - the agent now has
list_indicatorsandget_series
Same URLs work for Cursor, Continue, and any other MCP client.
How It Works
#- FastAPI backend, same dataset that powers the TREMOR app charts
- Indicators stored in Postgres, refreshed on the schedule of each upstream source
- MCP layer exposes two tools (
list_indicators,get_series) over Streamable HTTP and SSE - Open HTTP API mirrors the same data at
/tremor/v1/,/indicators,/seriesfor non-MCP clients - Cloudflare in front for rate limiting and WAF
Data Sources
#Indicators are pulled from primary publishers; the dictionary returns the upstream source and source series ID for each entry.
- US: FRED, NY Fed, NCUA, FDIC, Shiller
- India: RBI, MoSPI, NSE
- EU / Global: ECB, OECD
Sample indicator IDs: us_treasury_30y_yield, us_bank_delinq_cc, shiller_cape, india_credit_deposit_ratio.
Example Agent Prompts
#- "Pull the last 5 years of US 30-year Treasury yield and US credit card delinquencies. Are they correlated?"
- "Show me every macro early-warning indicator that is currently above its 2007 pre-crisis level."
- "List every Indian indicator you can pull and tell me which sources they come from."
- "Get Shiller CAPE for the last 145 years and tell me how today compares."