Finance
Data source: Curated dataset (exchange listings)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/ticker-search/
claude_desktop_config.json
{
"mcpServers": {
"gnist-ticker-search": {
"url": "https://context.gnist.ai/mcp/ticker-search/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/ticker-search/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "lookup_ticker", "arguments": {"ticker": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/ticker-search/
5 endpoints available:
GET /rest/ticker-search/lookup_tickerGET /rest/ticker-search/search_company_tickersGET /rest/ticker-search/list_tickers_by_exchangeGET /rest/ticker-search/list_tickers_by_sectorGET /rest/ticker-search/report_feedback
Shell
curl "https://context.gnist.ai/rest/ticker-search/lookup_ticker?ticker=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/ticker-search/lookup_ticker",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"ticker": "example"
},
)
print(resp.json())
Command Line
Command
gc ticker-search
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (5)
lookup_tickerLook up a company by its stock ticker symbol.
| Parameter | Type | Required | Description |
|---|---|---|---|
ticker | string | required | Stock ticker symbol (e.g. AAPL, 7203.T, MC.PA, EQNR.OL). |
search_company_tickersSearch the company ticker database by name or symbol.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search by company name or ticker symbol. |
limit | integer | optional | Maximum results to return. (default: 20) |
list_tickers_by_exchangeList company tickers by stock exchange.
| Parameter | Type | Required | Description |
|---|---|---|---|
exchange | string | required | Stock exchange name (e.g. NYSE, NASDAQ, LSE, TSE, HKEX, OSE). |
limit | integer | optional | Maximum results to return. (default: 50) |
list_tickers_by_sectorList company tickers by GICS sector.
| Parameter | Type | Required | Description |
|---|---|---|---|
sector | string | required | GICS sector (e.g. Information Technology, Financials, Health Care). |
limit | integer | optional | Maximum results to return. (default: 50) |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |