Data source: Curated dataset (exchange listings)
https://context.gnist.ai/mcp/ticker-search/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (5)
lookup_tickerLook up a company by its stock ticker symbol.
Returns company name, exchange, country, sector, and market cap category.
| Parameter | Type | Required | Description |
|---|---|---|---|
ticker | string | required | Stock ticker symbol (e.g. AAPL, 7203.T, MC.PA, EQNR.OL). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_ticker",
"arguments": {
"ticker": "example"
}
}
}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) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_company_tickers",
"arguments": {
"query": "example"
}
}
}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) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_tickers_by_exchange",
"arguments": {
"exchange": "example"
}
}
}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) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_tickers_by_sector",
"arguments": {
"sector": "example"
}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
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"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/ticker-search/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "lookup_ticker",
"arguments": {
"ticker": "example"
}
}
},
)
print(resp.json())