bull-milker-mcp
This read-only MCP server provides access to moomoo market data, stock screening, portfolio risk analysis, and tax estimation tools. All tools are strictly read-only — no order placement or modification.
Health & Connectivity:
check_healthverifies moomoo OpenD connection and login status.Market Snapshot:
get_market_snapshotretrieves live price, volume, percentage change, and other data for specified symbols.Account Positions:
get_account_positionslists current holdings in paper or live trading accounts.Stock Screening:
run_bull_milker_screenerfilters stocks by turnover, volume, and % change across US, HK, SH, SZ markets.run_bull_milker_extended_screeneradds PE ratio filtering and enriches results with short-interest data (short sell rate, short available volume). Institutional ownership is alwaysNone.
Portfolio Concentration:
get_portfolio_sector_exposuregroups holdings by moomoo industry sectors, flags any position exceeding 25% concentration.Technical Outlook:
get_sector_technical_outlook_toolaggregates RSI/SMA signals per sector based on holdings (proxy, not real index quotes).Trade History & Tax:
get_quarterly_transaction_summary_toolsummarizes trades by quarter with counts, buy/sell splits, gross notional, and symbols traded (no cost-basis matching).get_quarterly_tax_summary_toolcomputes realized short-term and long-term capital gains/losses per quarter using FIFO cost basis. Requires live account and explicit opt-in (TAX_AUDIT_ENABLE_LIVE=true). Not tax advice — reconcile with official 1099-B.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bull-milker-mcpRun the Bull Milker screener with default settings."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bull-milker-mcp
A read-only MCP server exposing moomoo market data, the Bull Milker screener, and portfolio risk/exposure tools to Claude Desktop.
What it exposes
Tool | What it does |
| Confirms OpenD is reachable |
| Current paper/live positions |
| Live price/volume/change for given codes |
| Screener: turnover, volume, and % change filters, configurable via |
| Bull Milker + PE ratio and short-interest enrichment (see caveats below) |
| Deterministic concentration calc across your current positions, grouped by real moomoo industry-plate sectors |
| RSI/SMA technical signals aggregated per sector, holdings-weighted (see below) |
| Trade counts by quarter (Q126 format), no cost-basis matching |
| Realized gain/loss by quarter, FIFO cost basis, LIVE account only (opt-in) |
Related MCP server: moomoo-api-mcp
Important caveats — read before wiring up the "suggest investments" agent
Sector grouping:
get_portfolio_sector_exposureandget_sector_technical_outlook_toolgroup holdings by moomoo's real industry-type plates (viaget_owner_plate), not GICS. Concept/thematic plates are excluded. A symbol with no industry-plate match is grouped under an explicitly-labeled"Unknown (no industry plate mapping)"bucket — never silently folded into a real sector.Sector technical signals are a proxy, not an index quote:
get_sector_technical_outlook_tool'sweighted_rsi_14and SMA figures are a market-value-weighted average of each holding's own locally computed RSI/SMA, not a real sector-index feed — moomoo doesn't expose one through this API. Daily kline history is cached underdata/kline_cache/because moomoo's historical-kline quota takes 7 days to release per symbol; don't delete that cache casually or you'll burn quota re-fetching it.PE ratio: available directly from moomoo (
pe_ttm_ratioon snapshots, or as aFinancialFilterin the screener). Included and working.Short volume / short interest: moomoo's snapshot endpoint exposes
short_sell_rateandshort_available_volumeper symbol. These are fetched as an enrichment step after the screener runs (not filterable insideget_stock_filteritself, since it's not one of the screenableStockFieldoptions as far as the public API docs show).Institutional investment %: moomoo's app has an "Institutional Tracker" based on 13F filings, but as of writing this doesn't appear to be exposed through the public OpenAPI — 13F data is also inherently quarterly and reported with up to a 45-day lag, so even where available it's a lagging indicator, not real-time.
indicators.pyhas a stubbedget_institutional_ownership()that raisesNotImplementedErrorwith a clear TODO — plug in a third-party data provider there (e.g. a paid fundamentals API) if you want this metric. Don't let the agent silently treat a missing/stubbed value as "0% institutional ownership" — the tool returnsNoneexplicitly so that distinction is visible upstream.
Setup
./setup.shCreates the venv, installs dependencies, copies .env.example to .env if
missing, and prints the exact mcpServers block to paste into Claude
Desktop's config. Safe to re-run — skips steps already done. Edit .env
afterward to fill in your values (e.g. MOOMOO_SECURITY_FIRM).
Manual equivalent, if you'd rather not run the script:
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .
cp .env.example .env # fill in valuesRequires moomoo OpenD running and logged in (see the main Bull Milker
project's opend/README.md if you have it, or
https://openapi.moomoo.com/moomoo-api-doc/en/intro/). The server now checks
OpenD is reachable at startup and exits with a clear message if not, rather
than failing opaquely on the first tool call.
Developing in VS Code
Open this folder in VS Code.
.vscode/launch.jsonis set up to runsrc/bull_milker_mcp/server.pydirectly under the debugger — set breakpoints in any tool function and step through a call.For a protocol-level test without any client, use the MCP Inspector:
npx @modelcontextprotocol/inspector python -m bull_milker_mcp.serverRun
python -m bull_milker_mcp.screenerfor a quick manual smoke test of the screener logic alone, without going through MCP at all.
Wiring into Claude Desktop
Copy the relevant block from claude_desktop_config.example.json into your
Claude Desktop MCP config, updating the cwd path. Restart Claude Desktop,
then confirm the tools show up (Claude Desktop's MCP tool picker, or just
ask "what tools do you have from bull-milker-mcp?").
Shutting down
./stop.shStops the bull_milker_mcp server process and moomoo OpenD, so neither
keeps running (or holding a live account connection) between sessions.
Quit Claude Desktop first — it respawns the MCP server on demand, so
killing it while Claude Desktop is still open just makes tool calls fail
until the next call or a Desktop restart.
Suggested build/test order
check_health— confirm the OpenD round trip works at all.get_market_snapshot— one real symbol, verify data shape.get_account_positions— paper account.run_bull_milker_screener— verify against the existing Bull Milker project's results.get_portfolio_sector_exposure— test with a small known portfolio, check the math by hand.run_bull_milker_extended_screener— add PE + short interest enrichment.get_sector_technical_outlook_tool— first call will be slow (fetches ~380 days of daily klines per holding); re-run it and confirm the second call is fast, using the cache instead of re-fetching.Wire into Claude Desktop, test each tool interactively in chat.
Only then: build the standing prompt and set up a Cowork scheduled task.
Safety
See SAFETY.md for the full threat model and user stories. In short:
this server is read-only by design and by enforcement — guardrails.py
checks for trade-execution symbols at startup, and
tests/test_no_trading_capability.py fails the build if any creep in.
Every tool call is logged to data/audit_log.jsonl (see audit.py).
Before adding any new tool, ask: does this need to place, modify, or cancel an order? If yes, stop and read SAFETY.md US-2 first.
Run the safety test any time: pytest tests/test_no_trading_capability.py -v
MCP SDK version note
This project targets mcp v2 (MCPServer, not the older FastMCP class
— the official SDK renamed it in its July 2026 v2 release; v1 is now
maintenance-only). If you're following older MCP tutorials that show
from mcp.server.fastmcp import FastMCP, that's the v1 API — this repo
uses from mcp.server import MCPServer instead. If your installed mcp
resolves to <2.0, either upgrade (pip install "mcp[cli]>=2.0") or pin
your own project to mcp>=1.28,<2 and revert this file's import — don't
mix the two.
Tax reporting (live account)
get_quarterly_tax_summary computes realized capital gains/losses by
quarter (Q126 format) using FIFO cost-basis matching against your LIVE
account's deal history — genuinely different from
get_quarterly_transaction_summary, which just counts trades on whichever
account (paper by default) and does no cost-basis matching at all.
This is gated behind TAX_AUDIT_ENABLE_LIVE=true in .env — it's off by
default and raises a clear PermissionError if you call it without
enabling it first. See SAFETY.md US-8/US-9/US-10 before turning this on.
Not tax advice. FIFO cost basis, no wash-sale handling, no corporate actions, no dividends. Reconcile against your broker's 1099-B and talk to an actual tax professional before filing anything.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI agents to execute stock trading operations with built-in risk controls and human approval workflows. Supports paper trading simulation, real brokerage integration (Alpaca, Tradier), backtesting, sentiment analysis, and portfolio management while maintaining strict separation between AI intelligence and trade execution.MIT
- Alicense-qualityBmaintenanceEnables AI agents to access real-time market data, manage Moomoo trading accounts, and execute trades via the Moomoo platform.25Apache 2.0
- Alicense-qualityBmaintenanceEnables read-only access to Interactive Brokers data including contracts, market data, news, fundamentals, and portfolio/account information for LLM workflows and autonomous agents.16BSD 3-Clause

ROIC.ai Financial Data MCPofficial
AlicenseAqualityBmaintenanceEnables AI assistants to access stock prices, financial statements, earnings call transcripts, and fundamental data for 60,000+ public companies via 25 read-only tools.252MIT
Related MCP Connectors
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
Read-only China A-share data for AI agents: market, limit-up, capital flow and disclosures.
US/HK markets — 151 tools: quotes, options, orders, fundamentals, screener, IPO, alerts & DCA
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mDemarco12/bull-milker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server