Skip to main content
Glama

Crunchbase MCP Server

Crunchbase MCP サーバー

AIアシスタントがCrunchbaseデータにアクセスできるようにするModel Context Protocol(MCP)サーバー。このサーバーにより、AIアシスタントはCrunchbaseから企業を検索し、企業情報、資金調達情報、買収情報、人事データなどを取得できます。

特徴

  • さまざまな基準で企業を検索する
  • 特定の企業に関する詳細情報を入手する
  • 企業の資金調達ラウンドを取得する
  • 取得データを取得する
  • 企業に関連する人物を検索する

前提条件

  • Node.js (v16 以上)
  • Crunchbase APIキー

インストール

  1. リポジトリをクローンします。
git clone https://github.com/Cyreslab-AI/crunchbase-mcp-server.git cd crunchbase-mcp-server
  1. 依存関係をインストールします:
npm install
  1. プロジェクトをビルドします。
npm run build

構成

サーバーを動作させるにはCrunchbase APIキーが必要です。APIキーはCrunchbase APIにサインアップすることで取得できます。

APIキーの設定

API キーを環境変数として設定します。

export CRUNCHBASE_API_KEY=your_api_key_here

MCP構成

付属のセットアップ スクリプトを使用して、MCP サーバーを自動的に構成できます。

# Build the project first npm run build # Run the setup script npm run setup

セットアップ スクリプトは次の処理を実行します。

  1. Crunchbase APIキーを尋ねる
  2. MCP設定ファイルを見つける(または新しいファイルを作成する)
  3. Crunchbase MCPサーバーを設定に追加する

あるいは、MCP 構成ファイルに手動で追加することもできます。

{ "mcpServers": { "crunchbase": { "command": "node", "args": ["/path/to/crunchbase-mcp-server/build/index.js"], "env": { "CRUNCHBASE_API_KEY": "your_api_key_here" }, "disabled": false, "autoApprove": [] } } }

使用法

サーバーの実行

サーバーを起動します。

npm start

自動リロードを使用した開発の場合:

npm run dev

利用可能なツール

サーバーは次のツールを公開します。

  1. search_companies - さまざまな基準に基づいて企業を検索する
    • パラメータ:
      • query (オプション): 検索クエリ(例:会社名、説明)
      • location (オプション):場所でフィルタリングします(例:「サンフランシスコ」、「ニューヨーク」)
      • category (オプション): カテゴリでフィルタリング(例:「人工知能」、「フィンテック」)
      • founded_after (オプション):設立日(YYYY-MM-DD)でフィルタリング
      • founded_before (オプション): 設立日(YYYY-MM-DD)でフィルタリング
      • status (オプション): 会社のステータス(例:「アクティブ」、「閉鎖」)でフィルタリングします
      • limit (オプション): 返される結果の最大数 (デフォルト: 10)
  2. get_company_details - 特定の会社に関する詳細情報を取得する
    • パラメータ:
      • name_or_id (必須): 会社名またはUUID
  3. get_funding_rounds - 特定の企業の資金調達ラウンドを取得する
    • パラメータ:
      • company_name_or_id (必須): 会社名またはUUID
      • limit (オプション): 返される結果の最大数 (デフォルト: 10)
  4. get_acquisitions - 特定の企業による、または特定の企業の買収を取得する
    • パラメータ:
      • company_name_or_id (オプション): 会社名またはUUID
      • limit (オプション): 返される結果の最大数 (デフォルト: 10)
  5. search_people - さまざまな基準に基づいて人物を検索する
    • パラメータ:
      • query (オプション): 検索クエリ(例:人名)
      • company (オプション): 会社名でフィルタリング
      • title (オプション): 役職で絞り込む
      • limit (オプション): 返される結果の最大数 (デフォルト: 10)

利用可能なリソース

サーバーは次のリソースも公開します。

  1. トレンド企業- Crunchbaseでトレンドになっている企業リスト
    • URI: crunchbase://trending/companies
  2. 会社詳細- 特定の会社に関する詳細情報
    • URI テンプレート: crunchbase://companies/{name}
  3. 企業の資金調達ラウンド- 特定の企業の資金調達ラウンド
    • URI テンプレート: crunchbase://companies/{name}/funding
  4. 企業買収- 特定の企業による、または特定の企業の買収
    • URI テンプレート: crunchbase://companies/{name}/acquisitions

クエリの例

AI アシスタントがこの MCP サーバーを使用する方法の例をいくつか示します。

  1. サンフランシスコの AI 企業を検索:
{ "query": "AI", "location": "San Francisco", "limit": 5 }
  1. 特定の企業の詳細を取得します。
{ "name_or_id": "OpenAI" }
  1. 企業の資金調達ラウンドを獲得する:
{ "company_name_or_id": "Anthropic" }
  1. テクノロジー企業の CEO を検索:
{ "title": "CEO", "limit": 10 }

ライセンス

マサチューセッツ工科大学

接触

ご質問やサポートについては、 contact@cyreslab.aiまでお問い合わせください。

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

AIアシスタントがCrunchbaseデータにアクセスできるようにするModel Context Protocol(MCP)サーバー。このサーバーにより、AIアシスタントはCrunchbaseから企業を検索し、企業情報、資金調達情報、買収情報、人事データなどを取得できます。

  1. 特徴
    1. 前提条件
      1. インストール
        1. 構成
          1. APIキーの設定
          2. MCP構成
        2. 使用法
          1. サーバーの実行
          2. 利用可能なツール
          3. 利用可能なリソース
        3. クエリの例
          1. ライセンス
            1. 接触

              Related MCP Servers

              • A
                security
                F
                license
                A
                quality
                A Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API. This server allows AI models and other clients to manage Supabase projects and organizations through a standardized interface.
                Last updated 8 months ago
                8
                408
                42
                JavaScript
              • A
                security
                A
                license
                A
                quality
                A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
                Last updated 4 days ago
                1
                7,374
                1,973
                TypeScript
                MIT License
                • Apple
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol (MCP) server that enables AI assistants to interact with MySQL databases by executing SQL queries and checking database connectivity.
                Last updated 4 months ago
                TypeScript
                MIT License
                • Apple
                • Linux
              • A
                security
                F
                license
                A
                quality
                An all-in-one Model Context Protocol (MCP) server that connects your coding AI to numerous databases, data warehouses, data pipelines, and cloud services, streamlining development workflow through seamless integrations.
                Last updated 2 months ago
                2
                Python
                • Apple
                • Linux

              View all related MCP servers

              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/Cyreslab-AI/crunchbase-mcp-server'

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