The TickerDB tool stack
We build more than an API. MCP servers, multiple SDKs, and agent-ready tooling for market workflows. Open source, and built on TickerDB.
The stack behind our strongest use cases.
Most teams use TickerDB for four things: watchlist monitoring, market scanners, historical setup lookbacks, and AI research copilots. The tools below are the fastest way into those workflows.
Use the API, SDKs, or MCP server to pull /watchlist/changes and trigger daily portfolio alerts or webhooks.
Search the whole market for oversold names, rare conditions, and valuation mismatches with query builders or MCP tools.
Ask when a band last appeared, how often it happens, and what followed by using summary event mode.
Give Claude, Cursor, Windsurf, CrewAI, LangChain, or your own app structured market context they can reason about immediately.
Market data tools for
any MCP client.
TickerDB exposes pre-computed financial data as MCP tools. Connect to Claude Desktop, Cursor, Windsurf, or any MCP-compatible client.
Your AI assistant gets EOD market context directly in the chat. Summaries, watchlists, ticker event history, and more. No infrastructure to manage.
// Add to your MCP client config { "mcpServers": { "tickerdb": { "url": "https://mcp.tickerdb.com/mcp", "headers": { "Authorization": "Bearer tdb_your_api_key" } } } }
Native clients for three languages.
Type-safe, idiomatic SDKs for the most common languages in AI development. Install, pass your API key, and start calling endpoints.
Python SDK
pip install tickerdb Official Python client with sync + async support, full type hints, and typed exceptions. Works with FastAPI, Django, Flask, LangChain, and any Python environment.
Node.js SDK
npm install tickerdb TypeScript-first client with full type definitions. Works with Next.js, Nuxt, SvelteKit, Express, and any Node.js environment.
Go SDK
go get github.com/tickerdb/tickerdb-go Idiomatic Go client. Concurrent-safe, strongly typed, zero dependencies. Works with Gin, Chi, standard library, and any Go service.
TickerDB is a plain HTTP API. If your language can make a GET request and set a header, it works. No SDK required.
Everything you need to ship agent workflows.
TickerDB gives you the pieces that matter in production: an MCP server for chat-native access, SDKs for Python, Node.js, and Go, plus a simple HTTP API underneath it all.
Use the same structured market context across prototypes, automations, internal copilots, and internal workflows that add real analysis or application logic without maintaining indicator pipelines yourself.
// Example questions your tools can answer "What changed on my watchlist since yesterday?" "Show me deep_oversold semis with above_average volume." "When did NVDA last enter strong_uptrend, and what followed?" "Give me just trend.direction and momentum.rsi_zone for AAPL."
All tools. All on GitHub.
Every SDK and the MCP server are open source. Read the code, file issues, or contribute.
MCP server for TickerDB. Connects to Claude Desktop, Cursor, Windsurf, and any MCP client.
view repoOfficial Python SDK. Sync + async clients, type hints, and typed exceptions.
view repoOfficial Node.js SDK. TypeScript-first with full type definitions.
view repoOfficial Go SDK. Concurrent-safe, zero dependencies.
view repo