> ## Documentation Index
> Fetch the complete documentation index at: https://firecrawl-docs-firecrawl-replit-connector.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 検索専用MCPエンドポイント

> Web検索とリサーチ検索向けの固定された読み取り専用MCPツールセットでFirecrawlを利用します

`https://mcp.firecrawl.dev/v2/mcp` にある [Firecrawl MCP Server](/ja/mcp-server) はデフォルトのエンドポイントで、Firecrawl の完全なツールセットを提供します。

<div id="endpoint">
  ## エンドポイント
</div>

```text theme={null}
https://mcp.firecrawl.dev/v2/mcp-search
```

すべてのリクエストには認証が必要です。エンドポイントに直接OAuthで接続するか、`Authorization` ヘッダーにFirecrawl APIキーを指定してください。

```json theme={null}
{
  "mcpServers": {
    "firecrawl-search": {
      "url": "https://mcp.firecrawl.dev/v2/mcp-search",
      "headers": {
        "Authorization": "Bearer fc-YOUR_API_KEY"
      }
    }
  }
}
```

<div id="available-tools">
  ## 利用可能なツール
</div>

検索専用エンドポイントでは、以下の6つの読み取り専用ツールのみを利用できます。

| ツール                                 | 用途                            |
| ----------------------------------- | ----------------------------- |
| `firecrawl_search`                  | ウェブを検索し、ランク付けされた結果を返します       |
| `firecrawl_research_search_papers`  | 研究論文を検索します                    |
| `firecrawl_research_inspect_paper`  | 論文のメタデータを取得します                |
| `firecrawl_research_related_papers` | 引用リンクを通じて関連論文を見つけます           |
| `firecrawl_research_read_paper`     | 論文の全文から本文箇所を読み取ります            |
| `firecrawl_research_search_github`  | 公開リポジトリの履歴と README ファイルを検索します |

<div id="differences-from-the-full-mcp-endpoint">
  ## フルMCPエンドポイントとの違い
</div>

* ツールセットは固定されており、読み取り専用です。
* Scrape、map、crawl、extract、agent、interact、parse、monitor、feedback の各ツールは利用できません。
* `firecrawl_search` は `scrapeOptions` を受け付けず、ページコンテンツの取得をリクエストすることもできません。
