Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Boothcheck
Boothcheck logo
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:19:08 PM

Boothcheck

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

What a stock's price is betting on: implied growth, duration, and margin from SEC filings. Free.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "boothcheck": {
      "command": "npx",
      "args": [
        "-y",
        "https://boothcheck.com/connect**"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

boothcheck MCP server

Ask any AI assistant what a stock's price is actually betting on.

boothcheck inverts a US stock's market price into the bet it implies: the operating-income growth rate, the years it must be sustained, and the operating margin the price assumes, measured against what the company has actually delivered. Every number traces to SEC EDGAR filings through a reverse-DCF read (expectations investing). It never returns a fair value, a price target, or a buy/sell rating. It shows the bet, so you can judge it.

This MCP server exposes that decomposition for about 2,000 US tickers. Read-only. Five tools work with no account at all; the rest come with a boothcheck plan.

Connect

The setup walkthrough, with one-click installers for Cursor and VS Code, lives at https://boothcheck.com/connect. It covers everything below and fills in the URL for you.

There are two endpoints, and they are not interchangeable.

EndpointAuthWhat you get
https://boothcheck.com/api/mcpnone, or Authorization: Bearer bck_...Keyless: the five free tools. With an API key: everything on that plan.
https://boothcheck.com/api/mcp-authOAuth 2.1Sign in through the browser once. Everything on your plan, tokens refresh themselves.

A keyless client pointed at /api/mcp-auth gets a 401, so pick the one that matches how you want to authenticate.

Claude and Claude Desktop. Settings, then Connectors, then Add custom connector. Paste an endpoint. For the OAuth one, choose Connect and approve the read-only permission. Then switch boothcheck on under Search and tools in a conversation.

ChatGPT. Settings, then Apps and Connectors, then Advanced, and turn on developer mode. Create a new connector with the endpoint. The server ships an Apps SDK widget, so results render as an inline priced-in card.

Claude Code

Terminal
claude mcp add --transport http boothcheck https://boothcheck.com/api/mcp-auth

Any MCP client (JSON config)

A config-file client cannot run the OAuth browser step, so use the keyless endpoint and attach an API key. Create one in account settings; keys are shown once and stored hashed.

config.json
{
  "mcpServers": {
    "boothcheck": {
      "type": "http",
      "url": "https://boothcheck.com/api/mcp",
      "headers": { "Authorization": "Bearer bck_YOUR_KEY" }
    }
  }
}

Tools

Free and keyless. No account, nothing to approve.

ToolWhat it does
whats_priced_inInvert one ticker's price into implied growth, duration, and margin, against what the company earns today.
most_stretchedRank stocks by how much growth is already baked into their price.
compare_priced_inSide by side of the assumptions embedded in two prices.
list_coverageThe coverage inventory: every ticker with a live record and its resolution level.
get_report_summaryBullet takeaways of a boothcheck research report. Public reports keyless; the full library needs a Research key.

With a free API key

ToolWhat it does
get_guidance_ledgerManagement guidance behavior from 8-K filings: lifetime counts of raises, cuts, initiations, withdrawals, and reaffirmations. A Research key adds the per-year history and the scored delivery record.

With a Research plan

ToolWhat it does
get_reportFull narrative report sections: valuation, bull case, bear case, takeaways, catalysts.
get_iee_recordThe full structured price inversion: solved variables, held parameters, discount basis, sensitivity, plausibility panel.
get_segmentsClean reportable-segment snapshots from the latest 10-K segment note.
get_peer_cohortThe peer cohorts we compare a company against, per segment, with how each was matched. Cohort multiple medians are not served; they are computed inside the engine per valuation line, not stored as standalone facts.
get_risk_factor_deltasRisk factors added to the latest 10-K versus the prior year, as verbatim Item 1A headings.
get_insider_signalsThe current insider register from Forms 3/4/5: officers and directors, their current reported stakes, and lifetime filing counts. Current facts only, no performance claims.
get_holdersThe current 13F institutional holders register: fund families, concentration, positions opened and closed.

With an Analyst/API plan

ToolWhat it does
analyst_deskOne standardized table across 2 to 25 companies plus a deterministic research brief naming the largest differences. No model runs, no ranking, no fair value.

The same data is served as plain REST at https://boothcheck.com/api/v1, with an OpenAPI 3.1 spec at https://boothcheck.com/api/v1/openapi.json generated from the same registry that runs the endpoints. Docs: https://boothcheck.com/developers

Example prompts once connected:

  • "What is NVDA's price betting on?"
  • "Which stocks are priced for the most right now?"
  • "Compare what AMD and NVDA prices each assume."

What you get back

Plain-language reads like:

NVIDIA Corp (NVDA), as of 2026-06-28: At today's price, NVDA is priced for growth of +30.8% sustained for about 5.6 years. The more the price assumes beyond what the company has delivered, the more has to go right to justify it.

plus structured fields (impliedGrowthPct, impliedDurationYears, impliedMarginPct, currentMarginPct, characterization) and a link to the full report with the bull case, bear case, and valuation X-ray.

A price does not always resolve to a single number. Where the engine cannot solve one defensibly it says so in words rather than returning a point, and those reads are labelled as bounds, not estimates.

Rules of the road

  • No fair values, no price targets, no ratings. Describe output as "what the price implies," not as a recommendation.
  • For informational and research purposes only. Not investment advice. boothcheck is not a registered investment adviser.
  • Data is precomputed from SEC EDGAR filings and refreshed on boothcheck's regen cadence; each response carries its as-of date.
  • Coverage is roughly 2,000 US tickers and grows filing by filing. Some tools cover fewer names than others. When a tool returns nothing for a ticker, that is the answer, not an error to retry.

Registry

Published in the Official MCP Registry as com.boothcheck/boothcheck (see server.json). Aggregators like PulseMCP ingest from there. The listed remote is the keyless endpoint, so a registry install works with no account.

Links

  • Site: https://boothcheck.com
  • Connect an AI agent: https://boothcheck.com/connect
  • API docs: https://boothcheck.com/developers Β· API terms: https://boothcheck.com/api-terms
  • Methodology (why no price targets): https://boothcheck.com/methodology
  • Privacy: https://boothcheck.com/privacy Β· Terms: https://boothcheck.com/terms
  • Contact: privacy@boothcheck.com

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • H
    Hollaugo Financial Research Mcp Server

    Analyze stocks with summaries, price targets, and analyst recommendations. Track SEC filings, divi…

    πŸ’° Finance & Fintech0 views
    Compare vs Hollaugo Financial Research Mcp Server β†’
  • M
    Mcp Server

    34 stock valuation, financial data, and portfolio management tools for AI agents.

    πŸ’° Finance & Fintech0 views
    Compare vs Mcp Server β†’
  • Cabrini Market Data logoCabrini Market Data

    US stock market data for AI agents β€” 23 years of minute bars, SEC filings, fundamentals.

    πŸ’° Finance & Fintech0 views
    Compare vs Cabrini Market Data β†’
  • Alpha Vantage Mcp logoAlpha Vantage Mcp

    Alpha Vantage API integration to fetch both stock and crypto information

    πŸ’° Finance & Fintech3 views
    Compare vs Alpha Vantage Mcp β†’

Frequently Asked Questions about Boothcheck

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "boothcheck": { "command": "npx", "args": ["-y", "boothcheck"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewBoothcheck AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/boothcheck?style=directory)](https://allmcps.com/mcp/boothcheck)
HTML Embed
<a href="https://allmcps.com/mcp/boothcheck"><img src="https://allmcps.com/api/badge/boothcheck?style=directory" alt="Boothcheck on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
36Quality signal: Fair Β· 36/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Boothcheck β†’Install in Claude DesktopInstall in CursorInstall in VS Code