GnistAI GnistAI
Log in

Financial Markets

Exchange rates, commodity prices, ETF holdings, and insider trading data from central banks and financial regulators. One toolkit for global financial market intelligence.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Finance

Data source: ECB, Norges Bank, FRED, SEC EDGAR

MCP 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"}}}'

API REST API

API Root https://context.gnist.ai/rest/financial-markets/

3 endpoints available:

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())

OpenAPI Spec  ·  Full API Docs

CLI 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_markets
Search across exchange rates, commodities, ETF holdings, and insider trading.
ParameterTypeRequiredDescription
querystringrequiredCurrency code (e.g. 'USD'), commodity name (e.g. 'gold'), stock ticker (e.g. 'AAPL'), or general term.
limitintegeroptionalMax results per source. (default: 10)
list_financial_sources
List all financial market data sources, their coverage, and data types.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related