Finance
Data source: ECB, Norges Bank, FRED, SEC EDGAR
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/financial-markets/
claude_desktop_config.json
{
"mcpServers": {
"gnist-financial-markets": {
"url": "https://context.gnist.ai/mcp/financial-markets/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/financial-markets/" \
-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": "search_financial_markets", "arguments": {"query": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/financial-markets/
3 endpoints available:
GET /rest/financial-markets/search_financial_marketsGET /rest/financial-markets/list_financial_sourcesGET /rest/financial-markets/report_feedback
Shell
curl "https://context.gnist.ai/rest/financial-markets/search_financial_markets?query=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/financial-markets/search_financial_markets",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"query": "example"
},
)
print(resp.json())
Command Line
Command
gc financial-markets
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
search_financial_marketsSearch across exchange rates, commodities, ETF holdings, and insider trading.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Currency code (e.g. 'USD'), commodity name (e.g. 'gold'), stock ticker (e.g. 'AAPL'), or general term. |
limit | integer | optional | Max results per source. (default: 10) |
list_financial_sourcesList all financial market data sources, their coverage, and data types.
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") |