メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://docs.firecrawl.dev/llms.txt

Use this file to discover all available pages before exploring further.

MCP 経由で、Firecrawl の検索、スクレイピング、クロール、ブラウザツールを Sourcegraph Amp に追加します。

クイックスタート

1. APIキーを取得する

firecrawl.dev/appでサインアップし、APIキーをコピーします。

2. Amp に Firecrawl を追加する

Amp の設定を開き、MCP Server を追加します。Amp は標準の MCP 設定に対応しています。
{
  "amp.mcpServers": {
    "firecrawl": {
      "command": "npx",
      "args": ["-y", "firecrawl-mcp"],
      "env": {
        "FIRECRAWL_API_KEY": "fc-YOUR-API-KEY"
      }
    }
  }
}
fc-YOUR-API-KEY をお使いの Firecrawl APIキーに置き換えてください。

3. Ampを再読み込み

Ampウィンドウを再読み込みします。これで、Firecrawlのツールをエージェントで利用できます。

クイックデモ

Search the web for "Sourcegraph Cody vs Amp" and summarize the differences.
スクレイピング https://docs.firecrawl.dev and list the core endpoints.
クロール https://example.com and output a site map as JSON.

リモートホストのURL (Node.jsは不要)

{
  "amp.mcpServers": {
    "firecrawl": {
      "url": "https://mcp.firecrawl.dev/fc-YOUR-API-KEY/v2/mcp"
    }
  }
}

トラブルシューティング

  • サーバーが起動しない — Amp の MCP ログビューで stderr の出力を確認してください。
  • npx が見つからない — Node.js 18 以降をインストールするか、上記のリモートホストのURLを使用してください。