Twelve Data MCP Server
Provides integration with Twelve Data API to access financial market data including historical time series, real-time quotes, and instrument metadata for stocks, forex pairs, and cryptocurrencies.
README
Twelve Data MCP Server
Overview
The Twelve Data MCP Server provides a seamless integration with the Twelve Data API to access financial market data. It enables retrieval of historical time series, real-time quotes, and instrument metadata for stocks, forex pairs, and cryptocurrencies.
Note: This server is currently in early-stage development; features and tools may evolve alongside updates to the Twelve Data API.
Obtaining Your API Key
To use Twelve Data MCP Server, you must first obtain an API key from Twelve Data:
- Visit Twelve Data Sign Up.
- Create an account or log in if you already have one.
- Navigate to your Dashboard and copy your API key.
Important: Access to specific endpoints or markets may vary depending on your Twelve Data subscription plan.
Tools
-
time_seriesFetch historical price data for a symbol.-
Inputs:
symbol(string): Ticker, e.g.AAPLinterval(string): Data interval, e.g.1min,1daystart_date(string, optional): ISO-8601 start timestampend_date(string, optional): ISO-8601 end timestamp
-
Returns: Array of OHLCV bars.
-
-
priceGet the latest price for a symbol.-
Inputs:
symbol(string)
-
Returns: Latest price quote.
-
-
stocksList available stock instruments.-
Inputs:
exchange(string, optional): Exchange code to filter by
-
Returns: Array of stock metadata.
-
-
forex_pairsList available forex pairs.- Inputs: none
- Returns: Array of forex pair metadata.
-
cryptocurrenciesList available cryptocurrencies.- Inputs: none
- Returns: Array of cryptocurrency metadata.
Installation
Using UV (recommended)
Directly run without local installation using uvx:
uvx mcp-server-twelve-data --help
Using pip
Install the server via pip:
pip install mcp-server-twelve-data
python -m mcp_server_twelve_data --help
Configuration
Claude Desktop integration
Add the following snippet to your claude_desktop_config.json:
{
"mcpServers": {
"twelvedata": {
"command": "uvx",
"args": ["--reinstall", "mcp-server-twelve-data", "--apikey", "YOUR_API_KEY"]
}
}
}
or this one, to use our remote http server
{
"mcpServers": {
"twelvedata-remote": {
"command": "npx",
"args": [
"mcp-remote", "https://mcp.twelvedata.com/mcp/",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "apikey YOUR_API_KEY"
}
}
}
}
See how easy it is to connect Claude Desktop to Twelve Data MCP Server:

VS Code integration
Automatic setup (with UV)
Manual setup
For manual configuration, add to your User Settings (JSON):
{
"mcp": {
"servers": {
"twelvedata": {
"command": "uvx",
"args": ["mcp-server-twelve-data", "-t", "streamable-http"]
}
}
}
}
Debugging
Use the MCP Inspector for troubleshooting:
npx @modelcontextprotocol/inspector uvx mcp-server-twelve-data
Development guide
- Local testing: Utilize the MCP Inspector as described in Debugging.
- Claude Desktop:: Update
claude_desktop_config.jsonto reference local source paths.
Docker usage
Build and run the server using Docker:
docker build -t mcp-server-twelve-data .
docker run --rm mcp-server-twelve-data --apikey YOUR_API_KEY
License
This MCP server is licensed under the MIT License. See the LICENSE file for details.
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.