Finnhub

live FinanceData

Finnhub MCP — wraps Finnhub Stock API (finnhub.io)

4 tools
0ms auth
free tier 50 calls/day

Tools

get_quote

Get a real-time stock quote including current price, change, and volume. Example: get_quote({ symbol: "AAPL", _apiKey: "your-key" })

No parameters required.

Try it
get_company_news

Get recent news articles about a company within a date range. Returns headline, summary, source, and URL. Example: get_company_news({ symbol: "AAPL", from: "2024-01-01", to: "2024-01-31", _apiKey: "yo

No parameters required.

Try it
get_earnings_calendar

Get upcoming and recent earnings reports across the market. Optionally filter by date range. Example: get_earnings_calendar({ from: "2024-01-01", to: "2024-03-31", _apiKey: "your-key" })

No parameters required.

Try it
search_symbol

Search for stock ticker symbols by company name or keyword. Returns matching symbols with descriptions. Example: search_symbol({ query: "apple", _apiKey: "your-key" })

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/finnhub/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/finnhub/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_quote","arguments":{}}}'