Investor MCP Server

DEPRECATED — v2.0 is a complete rewrite on Cloudflare Workers. See https://github.com/ferdousbhai/investor-agent

Local serverstdio

What is the Investor MCP server?

DEPRECATED — v2.0 is a complete rewrite on Cloudflare Workers. See https://github.com/ferdousbhai/investor-agent. That is what the investor mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

DEPRECATED — v2.0 is a complete rewrite on Cloudflare Workers. See https://github.com/ferdousbhai/investor-agent

Getting it running

Installation goes through your MCP client rather than a global install: point it at pnpm on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 7 tools. What each one is for:

  • get_stock_info — Stock fundamentals — price, financials, earnings, ownership, analyst ratings, profile
  • historical_prices — OHLCV price history (default: 1 year weekly, limit 100)
  • get_options — Options contracts sorted by open interest (default: top 25 per type)
  • market_movers — Top gaining, losing, or most active stocks
  • earnings_calendar — Upcoming earnings reports from NASDAQ
  • fear_greed_index — CNN stock market or crypto Fear & Greed index
  • technical_indicator — SMA, EMA, RSI, MACD, or Bollinger Bands

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Investor's toolset — get_stock_info, historical_prices, get_options and 4 more — is a fair guide to whether it matches your workflow.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
get_stock_infoStock fundamentals — price, financials, earnings, ownership, analyst ratings, profile
historical_pricesOHLCV price history (default: 1 year weekly, limit 100)
get_optionsOptions contracts sorted by open interest (default: top 25 per type)
market_moversTop gaining, losing, or most active stocks
earnings_calendarUpcoming earnings reports from NASDAQ
fear_greed_indexCNN stock market or crypto Fear & Greed index
technical_indicatorSMA, EMA, RSI, MACD, or Bollinger Bands

How to install the Investor MCP server

{
  "mcpServers": {
    "investor-agent": {
      "command": "npx",
      "args": ["-y", "investor-agent"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Investor to get stock info.
  • Use Investor to historical prices.
  • Use Investor to get options.

Frequently asked questions

It connects Investor to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (get_stock_info, historical_prices, get_options, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Investor directly.