Twelve Data MCP Server
Enables fetching real-time and historical market data including forex, precious metals, cryptocurrencies, and stocks using the Twelve Data API.
README
Twelve Data MCP Server
An MCP (Model Context Protocol) server for fetching real-time and historical market data including forex, precious metals (XAUUSD, XAGUSD), cryptocurrencies, and stocks using the Twelve Data API.
Features
- 📈 Real-time prices for forex, metals, crypto, and stocks
- 📊 OHLC time series data with multiple intervals (1min to monthly)
- 💱 Currency conversion between any supported pairs
- 📉 Technical indicators (RSI, MACD, SMA, EMA, Bollinger Bands, etc.)
- 🏆 Commodities listing (precious metals, energy, agricultural)
- ⚡ Low latency (~170ms average)
- 🆓 Free tier available (8 API credits/minute, 800/day)
Supported Symbols
Precious Metals
XAU/USD- Gold SpotXAG/USD- Silver SpotXPT/USD- Platinum SpotXPD/USD- Palladium Spot
Major Forex Pairs
EUR/USD,GBP/USD,USD/JPY,USD/CHFAUD/USD,USD/CAD,NZD/USD- And 140+ more currency pairs
Cryptocurrencies
BTC/USD,ETH/USD,XRP/USD- And many more from 180+ exchanges
Stocks
- All US exchanges (NASDAQ, NYSE)
- 90+ international exchanges
Installation
cd twelvedata-mcp-server
npm install
npm run build
Configuration
Get Your API Key
- Sign up for free at https://twelvedata.com/
- Get your API key from the dashboard
- Set the environment variable:
export TWELVEDATA_API_KEY="your_api_key_here"
Claude Desktop Configuration
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"twelvedata": {
"command": "node",
"args": ["/path/to/twelvedata-mcp-server/dist/index.js"],
"env": {
"TWELVEDATA_API_KEY": "your_api_key_here"
}
}
}
}
Available Tools
twelvedata_get_price
Get real-time price for any symbol.
"Get the current gold price" → symbol: "XAU/USD"
"EURUSD price" → symbol: "EUR/USD"
twelvedata_get_quote
Get detailed quote with OHLC, change, volume.
"Full quote for silver" → symbol: "XAG/USD"
twelvedata_get_time_series
Get historical OHLC candlestick data.
"Get 1-hour gold candles" → symbol: "XAU/USD", interval: "1h"
"Daily EURUSD last 100 days" → symbol: "EUR/USD", interval: "1day", outputsize: 100
twelvedata_convert_currency
Convert amounts between currencies.
"Convert 1000 USD to EUR" → from: "USD", to: "EUR", amount: 1000
"1 oz gold in USD" → from: "XAU", to: "USD", amount: 1
twelvedata_get_exchange_rate
Get exchange rate for a currency pair.
"EUR/USD exchange rate" → symbol: "EUR/USD"
twelvedata_list_commodities
List all available commodities.
"What metals can I trade?"
twelvedata_technical_indicator
Calculate technical indicators.
"RSI for gold" → symbol: "XAU/USD", indicator: "rsi"
"MACD for EURUSD" → symbol: "EUR/USD", indicator: "macd"
"20-period SMA" → indicator: "sma", time_period: 20
Supported indicators: SMA, EMA, WMA, RSI, MACD, BBANDS, STOCH, ADX, ATR, CCI, OBV, MOM, ROC, WILLR
API Rate Limits
| Plan | API Credits/min | Daily Limit | WebSocket |
|---|---|---|---|
| Free | 8 | 800/day | Trial only |
| Grow | 55-377 | Unlimited | Trial only |
| Pro | 610-1597 | Unlimited | ✅ |
| Ultra | 2584-10946 | Unlimited | ✅ |
Running the Server
Stdio Transport (default)
TWELVEDATA_API_KEY="your_key" npm start
HTTP Transport
TWELVEDATA_API_KEY="your_key" TRANSPORT=http PORT=3000 npm start
Development
# Build
npm run build
# Watch mode (rebuild on changes)
npm run dev
Example Usage
Once configured with Claude Desktop:
"What's the current gold price?"
"Show me the last 50 1-hour candles for XAUUSD"
"Calculate RSI for EUR/USD on the daily timeframe"
"Convert 5000 USD to EUR"
"Get a detailed quote for silver"
License
MIT
Credits
Data provided by Twelve Data
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.