/ Annuaire / Playground / mcp_massive
● Communauté massive-com ⚡ Instantané

mcp_massive

par massive-com · massive-com/mcp_massive

Query Massive.com financial market data — stocks, options, crypto, fundamentals — with natural language endpoint discovery and built-in DataFrame analysis.

mcp_massive is 4 composable tools: search endpoints by description, get endpoint docs, call any API with optional DataFrame storage, and run SQL across stored DataFrames. Also ships built-in functions for option pricing (Black-Scholes), returns, and technical indicators.

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

massive.replay ▶ prêt
0/0

Installer

Choisissez votre client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "massive": {
      "command": "uvx",
      "args": [
        "mcp_massive"
      ],
      "_inferred": true
    }
  }
}

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "massive": {
      "command": "uvx",
      "args": [
        "mcp_massive"
      ],
      "_inferred": true
    }
  }
}

Cursor utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "massive": {
      "command": "uvx",
      "args": [
        "mcp_massive"
      ],
      "_inferred": true
    }
  }
}

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "massive": {
      "command": "uvx",
      "args": [
        "mcp_massive"
      ],
      "_inferred": true
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "massive",
      "command": "uvx",
      "args": [
        "mcp_massive"
      ]
    }
  ]
}

Continue utilise un tableau d'objets serveur plutôt qu'une map.

~/.config/zed/settings.json
{
  "context_servers": {
    "massive": {
      "command": {
        "path": "uvx",
        "args": [
          "mcp_massive"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

claude mcp add massive -- uvx mcp_massive

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : mcp_massive

Analyze an options chain and price theoretical value

👤 Options traders, quant hobbyists ⏱ ~20 min advanced

Quand l'utiliser : You want to look at AAPL options, compare IV to historical vol, and spot-check Black-Scholes values.

Prérequis
  • Massive.com API key — massive.com signup — free tier
Déroulement
  1. Find the right endpoint
    Search endpoints: 'options chain for a given ticker and expiry'.✓ Copié
    → Best-match endpoint + params
  2. Pull chain
    Call the endpoint for AAPL with the next monthly expiry. Store as DataFrame 'aapl_chain'.✓ Copié
    → DataFrame stored; head preview
  3. Analyze
    Run SQL: SELECT strike, iv, bid, ask FROM aapl_chain WHERE expiry=... ORDER BY strike. Price Black-Scholes for each and show deltas to market mid.✓ Copié
    → Table of strikes with BS-vs-market

Résultat : Hands-on options screen without writing Python yourself.

Pièges
  • Delayed data on free tier — Check data timestamps; paid tier for real-time

Compute total return for a portfolio over a period

👤 Investors tracking performance ⏱ ~15 min intermediate

Quand l'utiliser : Year-end — how did my 10-position portfolio perform vs SPY?

Déroulement
  1. Fetch prices
    For each ticker in [list], get daily close prices from Jan 1 to today. Store each as a DataFrame.✓ Copié
    → Price series per ticker
  2. Compute weighted return
    Using my weights [paste], compute weighted portfolio return. Compare to SPY return over the same period.✓ Copié
    → Portfolio YTD vs SPY YTD

Résultat : Quick portfolio report without spreadsheets.

Pièges
  • No dividend reinvestment accounting by default — Use adjusted-close series; ask Claude to note the assumption
Combiner avec : filesystem

Screen stocks on fundamental criteria

👤 Value investors ⏱ ~20 min intermediate

Quand l'utiliser : You want US large-cap stocks with P/E < 15, dividend yield > 3%, and positive 5y earnings growth.

Déroulement
  1. Find endpoints
    Search endpoints for 'fundamentals' and 'screener'. Pick the right one.✓ Copié
    → Endpoint choice
  2. Screen
    Pull fundamentals for S&P 500 components. Store as DataFrame. Run SQL to filter my criteria.✓ Copié
    → Matching tickers with key ratios

Résultat : A shortlist to research further.

Pièges
  • Fundamentals data lags quarterly filings by weeks — Check as_of dates

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

massive + filesystem

Persist analysis to CSV for Excel follow-up

After the screen, export the final DataFrame as /reports/screen-YYYY-MM-DD.csv.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
search_endpoints query: str First step — discover what's available free
get_endpoint_docs endpoint_id Before calling an endpoint you don't know free
call_api endpoint, params, store_as?: str Actually fetch data; store to re-query 1 API call
query_data sql: str Analyze stored DataFrames without re-fetching free

Coût et limites

Coût d'exécution

Quota d'API
Per Massive.com plan
Tokens par appel
Raw series can be large — use DataFrame + SQL to slice
Monétaire
Free tier exists; paid for real-time / higher volume
Astuce
store_as + query_data is dramatically cheaper than re-fetching and re-parsing each time.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : MASSIVE_API_KEY env var
Sortie de données : Queries to massive.com

Dépannage

Erreurs courantes et correctifs

401 from Massive

Check API key. Verify it's still active in the dashboard.

DataFrame limit exceeded (50 / 50k rows default)

Raise via env config or chunk via SQL limits.

SQL syntax error in query_data

Query engine is a subset — check docs for supported functions.

Alternatives

mcp_massive vs autres

AlternativeQuand l'utiliserCompromis
Alpaca MCPYou want trading too, not just dataDifferent broker; narrower data
Polygon.io / Alpha Vantage direct + fetch MCPYou want full API controlYou write the fetching and parsing yourself

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills