Skip to main content
Glama
sapph1re

FinData MCP

by sapph1re

FinData MCP

AIエージェント向けのリアルタイム金融データ。株価、企業ファンダメンタルズ、80万件以上のFRED経済指標、SEC提出書類、暗号資産価格を提供します。Base上のx402マイクロペイメントによる従量課金制(1回0.01ドル)で、サインアップやAPIキーは不要です。

AIエージェントのための金融データ。株式、ファンダメンタルズ、経済指標、SEC提出書類、暗号資産の5つのツールが、あらゆるMCPクライアントから利用可能です。1回0.01ドルの従量課金制で、登録は不要です。

クイックスタート

インストール:

pip install findata-mcp

ウォレットキーの設定 (Base上でUSDCを保有するEVMウォレット):

export EVM_PRIVATE_KEY=your_private_key_here

Claude Desktopへの追加~/Library/Application Support/Claude/claude_desktop_config.json を編集します:

{
  "mcpServers": {
    "findata-mcp": {
      "command": "findata-mcp",
      "env": {
        "EVM_PRIVATE_KEY": "your_private_key_here"
      }
    }
  }
}

Cursorへの追加 — プロジェクトルートの .cursor/mcp.json を編集します:

{
  "mcpServers": {
    "findata-mcp": {
      "command": "findata-mcp",
      "env": {
        "EVM_PRIVATE_KEY": "your_private_key_here"
      }
    }
  }
}

クライアントを再起動してください。これで5つの金融データツールが利用可能になります。


Related MCP server: MCP Financial Data Gateway

ツール

ツール

返される内容

キャッシュ

stock_quote(ticker)

価格、出来高、変動率、時価総額

1分

company_fundamentals(ticker)

売上高、PER、セクター、ベータ値、配当利回り、説明

1時間

economic_indicator(series_id)

80万件以上のFREDシリーズ (GDP、CPI、金利、イールドカーブ)

6時間

sec_filing(ticker, form_type)

SEC EDGARからの10-K、10-Q、8-Kの全文

24時間

crypto_price(coin_id)

価格、時価総額、24時間出来高、7日間のスパークライン

1分


株価を取得する

stock_quote(ticker="NVDA")
{
  "ticker": "NVDA",
  "price": 878.35,
  "change": 12.40,
  "change_pct": 1.43,
  "volume": 41200000,
  "market_cap": 2150000000000,
  "currency": "USD"
}

企業のファンダメンタルズを調べる

company_fundamentals(ticker="AAPL")
{
  "ticker": "AAPL",
  "name": "Apple Inc.",
  "sector": "Technology",
  "market_cap": 3280000000000,
  "pe_ratio": 33.2,
  "revenue": 383285000000,
  "beta": 1.24,
  "dividend_yield": 0.0044
}

経済指標を確認する

economic_indicator(series_id="FEDFUNDS")
{
  "series_id": "FEDFUNDS",
  "title": "Federal Funds Effective Rate",
  "units": "Percent",
  "frequency": "Monthly",
  "latest_value": 4.33,
  "latest_date": "2026-02-01"
}

一般的なFREDシリーズ: GDP, CPIAUCSL (インフレ率), UNRATE (失業率), DGS10 (10年物国債), FEDFUNDS

SEC提出書類を読む

sec_filing(ticker="AAPL", form_type="10-K")
{
  "ticker_or_cik": "AAPL",
  "form_type": "10-K",
  "filing_date": "2025-11-01",
  "document_url": "https://www.sec.gov/Archives/...",
  "content": "UNITED STATES SECURITIES AND EXCHANGE COMMISSION..."
}

ticker のエイリアスとして ticker_or_cik (レガシー) または symbol も受け付けます。


料金

1回あたり0.01ドル。 サインアップ不要、APIキー不要、月額料金なし。

支払いはオープンなマイクロペイメントプロトコルである x402 を通じて自動的に行われます。MCPクライアントは、呼び出しごとにBaseメインネット上のUSDC送金に署名します。必要なもの:

  1. EVMウォレットの秘密鍵 (EVM_PRIVATE_KEY として設定)

  2. Baseメインネット上の少額のUSDC残高 (約1ドルで100回分)

以上です。アカウント作成やレート制限、請求ページはありません。


仕組み

pip install パッケージは軽量なMCP stdioサーバーです。ツール呼び出しをホストされたバックエンドにプロキシし、x402の支払い署名を自動的に処理します。データはYahoo Finance、FRED、SEC EDGAR、CoinGeckoから取得されます。

Your AI agent  →  findata-mcp (local stdio)  →  Backend (Railway)  →  Data providers
                  signs x402 payment              verifies payment

設定

変数

必須

デフォルト

説明

EVM_PRIVATE_KEY

はい

Base上でUSDCを保有するウォレットの秘密鍵

FINDATA_BACKEND_URL

いいえ

本番URL

セルフホストバックエンド用の上書き設定


その他のインストール方法

uvx (インストール不要):

uvx findata-mcp

配布状況

  • PyPI: findata-mcp

  • Glama: live

  • mcp.so: live

  • 公式MCPレジストリ: レビュー待ち

  • PyPI: 公開中

ライセンス

MIT

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    A
    quality
    B
    maintenance
    Provides structured financial market data (stocks, ETFs, mutual funds, fundamentals, market indicators) to AI systems via MCP, enabling natural language access to financial datasets with both hosted and local deployment options.
    31
    8
    ISC
  • A
    license
    A
    quality
    A
    maintenance
    Provides live financial data for any LLM agent, including stock quotes, crypto prices, SEC filings, XBRL financials, FX rates, and macro indicators, through ten MCP tools.
    11
    490
    MIT

View all related MCP servers

Related MCP Connectors

  • The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.

  • Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.

  • Twelve Data MCP: real-time & historical market data (stocks, crypto, forex, etc).

View all MCP Connectors

Latest Blog Posts

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/sapph1re/findata-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server