TickerAPI
OfficialEnables CrewAI agents to utilize TickerAPI's financial data tools for market analysis, supporting operations such as asset comparison, watchlist tracking, and technical screening across various market conditions.
Integrates with LangChain agents to provide access to TickerAPI's pre-computed market intelligence, including tools for stock analysis, watchlist management, and automated market scanning for conditions like oversold assets, breakouts, and unusual volume.
TickerDB MCP Server
MCP (Model Context Protocol) server for TickerDB — pre-computed market intelligence for AI agents.
Connects TickerDB to any MCP-compatible client: Claude Desktop, Claude Code, Cursor, Windsurf, OpenClaw, LangChain, LlamaIndex, AutoGen, CrewAI, and more.
Available Tools
Tool | Description |
| Technical + fundamental summary for a single ticker (supports date range and events filtering) |
| Live data for your saved watchlist tickers |
| Field-level diffs since the last pipeline run |
| Add tickers to your watchlist |
| Remove tickers from your watchlist |
| Account details, plan tier, and usage |
| Register a webhook for watchlist changes |
| List registered webhooks |
| Remove a webhook |
Use get_summary with start/end params for bulk ticker syncs across a date range, or with field/band params to query event occurrences.
Band Stability Metadata
Summary, watchlist, and watchlist changes tools return band stability metadata. Each band field (trend direction, momentum zone, etc.) includes a sibling _meta object describing how stable that state is. The stability label is one of fresh, holding, established, or volatile. Full metadata also includes periods_in_current_state, flips_recent, and flips_lookback. This context helps agents distinguish between a newly entered state and one that has persisted for many periods, improving the quality of trade signals and alerts.
Setup
Option 1: Claude.ai (OAuth)
The remote server at mcp.tickerdb.com supports OAuth 2.1 for Claude.ai Connectors. No API key management required — sign in with your TickerDB account and Claude.ai handles the rest.
Option 2: Remote server (Bearer token)
Connect any MCP client to https://mcp.tickerdb.com/mcp with your API key as a Bearer token.
Option 3: npm package (Claude Desktop, Cursor, etc.)
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"tickerdb": {
"command": "npx",
"args": ["tickerdb-mcp-server"],
"env": {
"TICKERDB_KEY": "tapi_your_api_key_here"
}
}
}
}Get an API key at tickerdb.com/dashboard.
Structure
This is a three-package workspace:
shared/— Shared tool definitions, API client, and server factory (internal, not published)remote/— Cloudflare Worker deployed atmcp.tickerdb.com(Streamable HTTP transport + OAuth 2.1)local/— Published npm packagetickerdb-mcp-server(stdio transport)
Both the remote server and npm package use the same tool definitions from shared/. The MCP server is a thin proxy — all tier-based access control, rate limiting, and field filtering is handled by the TickerDB HTTP API.
Authentication
The remote server supports two authentication methods:
Bearer token — pass your
tapi_*API key directly asAuthorization: Bearer tapi_...OAuth 2.1 — used by Claude.ai Connectors. The server implements dynamic client registration, PKCE, token exchange, and revocation. The
/authorizeendpoint redirects to the main TickerDB site for consent.
Development
# Install dependencies
npm install
# Build the remote worker
npm run build
# Dev server for remote worker
npx wrangler dev
# Build the npm package
cd local && npm install && npm run buildDeployment
Remote server:
npx wrangler deploynpm package:
cd local
npm version patch
npm run build
npm publishLatest Blog Posts
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/tickerdb/tickerapi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server