Public Stock Intelligence for Humans and AI Agents
Company insiders, members of Congress, and large funds already disclose trades and holdings to the public. The problem is not secrecy — it is noise. Filings are scattered across SEC EDGAR and House Clerk PDFs, written for compliance, and delayed by design.
Stock Intelligence turns those free government filings into a readable feed, a Pro API/MCP surface for agents, optional watchlist alerts, and a plug-in for the free Local AI Stock Bot.
Not financial advice. Everything here is public disclosure research. Filing date is not trade date. Amounts can be ranges. 13F snapshots are quarterly. Always open the original filing before you act.
What is free vs Pro
| Tier | What you get |
|---|---|
| Free | Local AI Stock Bot download, product pages, methodology, inventory counts |
| Pro ($5/mo) | Live hosted rows: Form 4/5, 8-K events, House PTR, Form 144, 13D/G, curated 13F, Mira daily brief, watchlists (email + webhook), MCP tools, bot feed via AMT_AGENT_KEY |
| Builder ($15/mo) | Everything in Pro + higher limits, more watchlists, bulk export |
Upstream data stays free government sources. We charge for hosting, cleaning, search, alerts, and agent packaging — not for “owning” public records.
Sources we use (and ones we do not)
- SEC EDGAR — Form 4/5 insiders, Form 8-K material events, Form 144 proposed sales, Schedule 13D/13G, curated 13F holdings
- U.S. House Clerk — Periodic Transaction Report PDFs (amounts are ranges)
- Senate EFD — link only for now (no free bulk ZIP like the House)
We do not scrape competitor paid congressional APIs, invent celebrity portfolios, or sell real-time quotes as the product. If a source is not official free public data, it does not belong in the core feed.
Plain-English Mira brief
Pro users get a shared daily brief that groups ideas into buckets normal people understand:
- Buy ideas — worth a closer look
- Sell if you already own them
- Keep an eye on
Generation is cached once per day (not billed per page view). Notes stay research commentary with hard disclaimers.
Watchlists: email and agent webhooks
On the Stock Intelligence page (Pro), create a ticker list. When new public filings match — insider trades, Congress disclosures, Form 144 notices, large-holder filings, 8-K events, or new fund positions — you can:
- Get an email to your account address
- Receive a HTTPS webhook for your agent or automation
- Poll matches via API/MCP anytime
curl -s -X POST https://agentmediatools.com/api/market-intelligence/watchlists \
-H "Authorization: Bearer mt_YOUR_PRO_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My holdings",
"tickers": ["AAPL", "MSFT", "NVDA"],
"notify_email": true,
"notify_webhook": true,
"webhook_url": "https://your-agent.example/hooks/filings"
}'
curl -s -H "Authorization: Bearer mt_YOUR_PRO_KEY" \ "https://agentmediatools.com/api/market-intelligence/watchlists/1/matches"
Webhook bodies look like event: "stock_intel.watchlist" plus a list of alert titles and original filing URLs. Only public HTTPS endpoints are accepted (no localhost or private IPs).
MCP tools for agents
With a Pro agent key, tools include:
amt_get_insider_trades·amt_get_congress_tradesamt_get_form144·amt_get_company_eventsamt_get_large_holders·amt_get_whale_holdingsamt_get_mira_stock_brief·amt_get_watchlist_matches
Full API table: /docs/stock-intelligence.
Optional: feed the free Local AI Stock Bot
The free bot paper-trades without AMT. If you already pay for Pro, put your agent key in the bot’s private .env:
# private .env — never commit AMT_AGENT_KEY=mt_your_pro_key ./launch_monitor.sh # Look for: AMT Pro key detected — pulling public-filing intel…
Mira’s research cycle then includes a fail-soft pack of public filings. Missing key, free plan, or network error never breaks paper mode.
Details: /stock-bot#pro-intel.
curl quick start
# Public inventory (no key) curl -s https://agentmediatools.com/api/market-intelligence/status | head -c 400 # Pro: recent open-market insider reports curl -s -H "Authorization: Bearer mt_YOUR_PRO_KEY" \ "https://agentmediatools.com/api/market-intelligence/insiders/trades?open_market=1&limit=5" # Pro: company 8-K events curl -s -H "Authorization: Bearer mt_YOUR_PRO_KEY" \ "https://agentmediatools.com/api/market-intelligence/events?limit=5" # Pro: Mira daily brief (cached) curl -s -H "Authorization: Bearer mt_YOUR_PRO_KEY" \ "https://agentmediatools.com/api/market-intelligence/mira-brief"
Why this matters for agents
Agents are good at summarizing and bad at babysitting dozens of government sites. A stable JSON shape with provenance links lets Claude, Hermes, Codex, or your local Mira stay on research instead of PDF archaeology — while humans still get a scannable UI.
Try it
Browse the live product, download the free bot, or upgrade for hosted rows and alerts.
Open Stock Intelligence → Free Local AI Stock Bot → Pro pricing → API docs →