Apple Stocks MCP

A macOS-only Model Context Protocol (MCP) server that lets an AI assistant read your own data from the Stocks app that ships with macOS - your watchlist, and the quotes, fundamentals and intraday charts the app has already cached on your Mac. Its 12 documented tools cover stock, watchlist, quote. It runs locally over stdio via the published package.

People connecting finance tools to Claude, Cursor, VS Code, or another MCP client. The project is written in TypeScript.

VERIFIED ACTIVE

LAST COMMIT 2026-07-30 · ★ 2 · #139 OF 283 MAINTAINED FINANCE · VERIFIED 2026-08-25

MIT · TypeScript servers · how we verify → /methodology

01 · Install Apple Stocks MCP

before you install - you'll need

The README does not document required environment variables for a basic install.

Claude Code

claude mcp add helderpgoncalves-apple-stocks-mcp -- npx -y apple-stocks-mcp

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "helderpgoncalves-apple-stocks-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "apple-stocks-mcp"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license MIT - declared in the repository

npm package apple-stocks-mcp - unscoped; check the name against the project README before installing

registry namespace io.github.helderpgoncalves is GitHub-verified and matches the repo owner

03 · What Apple Stocks MCP can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

With this server connected, an agent can list every ticker in your Stocks watchlist (in order), search the watchlist by symbol or company name, open a symbol in the Stocks app so you can add it with one tap (no file is written), and report whether the server can run here (always available.

Capability map

Tools grouped from the project's README - what Apple Stocks MCP lets an agent do.

Stock

4 tools - e.g. Fundamentals: day & 52-week range, market cap, volume, P/E, EPS, beta, dividend yield, next earnings.; Cached intraday OHLCV chart (ASCII sparkline) + change vs previous close.; Apple (AAPL) fundamentals…

stock_details · stock_chart · apple_stock · add_stock

Watchlist

3 tools - e.g. List every ticker in your Stocks watchlist (in order).; Cached quotes for every symbol in the watchlist.; Search the watchlist by symbol or company name.

list_watchlist · quote_watchlist · search_watchlist

Quote

1 tool - e.g. Price + daily change for one or more symbols, from the local cache.

get_quote

Portfolio

1 tool - e.g. Whole-watchlist analysis: up/down counts, top gainers/losers, breakdown by currency & exchange.

portfolio_summary

Top

1 tool - e.g. The biggest gainers and losers in the watchlist today.

top_movers

Stocks

1 tool - e.g. Diagnose your setup (macOS? data present? readable? Full Disk Access?).

stocks_doctor

Platform

1 tool - e.g. Report whether the server can run here (always available; the only tool on non-macOS).

platform_info

Latest releases

v1.1.5 · 2026-06-18

v1.1.4 · 2026-06-18

v1.1.3 · 2026-06-18

Added · Friendly non-macOS handling. On Linux/Windows the server starts cleanly and exposes a single platform_info tool that explains it's macOS-only and how to remove it - instead of 11 tools that would all fail.…

04 · Who maintains Apple Stocks MCP

apple-stocks-mcp is maintained by helderpgoncalves. It's the only MCP server we track from this author; the repo dates to Jun 2026.

05 · Facts

category
finance - ranked #139 of 283 actively-maintained finance servers as of 2026-08-25.
release cadence
7 releases in the last 90 days (latest 2026-06-18)
registry
io.github.helderpgoncalves/apple-stocks-mcp (active, first published 2026-06-18 · 5 versions)
packages
npm:apple-stocks-mcp

06 · Apple Stocks MCP FAQ

Is Apple Stocks MCP still maintained?

Yes - as of 2026-08-25, its last commit was 2026-07-30 and it shipped 7 releases in the last 90 days. We re-verify nightly.

What can Apple Stocks MCP do?

With this server connected, an agent can list every ticker in your Stocks watchlist (in order), search the watchlist by symbol or company name, open a symbol in the Stocks app so you can add it with one tap (no file is written), and report whether the server can run here (always available.

How do I install Apple Stocks MCP?

Run `npx -y apple-stocks-mcp`. The README does not document required environment variables for a basic install. You can also paste the ready-made client config above.

Does Apple Stocks MCP run locally?

Yes - it's a stdio server: it runs on your machine (via npx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to Apple Stocks MCP