`を実際のAPIキーに置き換えてください。
+
+---
+
+
+Claude Desktop
+
+**手動JSON設定**
+
+1. **設定ファイルを見つける**:
+
+ - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
+ - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
+ - Linux: `~/.config/Claude/claude_desktop_config.json`
+2. **設定を追加**:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+3. **Claude Desktopを再起動**して設定を適用
+
+
+
+
+Cline (VS Code拡張機能)
+
+1. **Cline MCP設定を開く**:
+
+ - VS CodeでClineを開く
+ - 設定アイコンをクリック → **Advanced MCP settings**
+ - または直接`cline_mcp_settings.json`を編集
+2. **設定を追加**:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+ > **ヒント**: `autoApprove`フィールドを使用すると、一般的に使用される読み取り専用ツールが毎回確認なしで自動的に実行されます。
+ >
+3. **設定を保存後**、ClineがMCPサーバーを自動的にロード
+
+参照: [Cline MCP設定ドキュメント](https://docs.cline.bot/mcp/configuring-mcp-servers)
+
+
+
+
+Zedエディタ
+
+1. **設定ファイルを作成**:
+
+ - プロジェクトルートディレクトリに`.zed/settings.json`を作成
+ - またはグローバル設定を使用: `~/.config/zed/settings.json`
+2. **設定を追加**:
+
+ ```json
+ {
+ "context_servers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ },
+ "enabled": true
+ }
+ }
+ }
+ ```
+
+ > **注意**: Zedは`mcpServers`ではなく`context_servers`を使用します
+ >
+3. **Zedをリロード**またはプロジェクトを再起動して設定を適用
+
+
+
+
+Cursorエディタ
+
+1. **Cursor設定を開く**:
+
+ - `Cmd/Ctrl + Shift + P` → "MCP Settings"を検索
+ - または`Cursor Settings` → `MCP` → `New MCP Server`に移動
+2. **設定を追加**:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+3. **Cursorを再起動**してMCPサーバーをロード
+
+
+
+
+Copilot / VS Code
+
+**推奨方法: HTTPサーバー**
+
+1. [VS Code MCP設定ガイド](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server)を参照
+2. VS Code MCP設定に設定を追加:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+**VS Code CLIを使用:**
+
+```bash
+code --add-mcp '{"name":"firstdata","type":"streamable-http","url":"https://firstdata.deepminer.com.cn/mcp","headers":{"Authorization":"Bearer "}}'
+```
+
+
+
+
+Copilot CLI
+
+HTTPサーバー方式を使用して接続:
+
+```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+```
+
+
+
+
+Windsurf
+
+1. **Windsurf MCP設定を開く**:
+
+ - [Windsurf MCP設定ガイド](https://docs.windsurf.com/windsurf/cascade/mcp#mcp-config-json)を参照
+2. **設定を追加**:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+
+
+
+JetBrains AI Assistant & Junie
+
+1. **JetBrains IDE設定を開く**:
+
+ - `Settings | Tools | AI Assistant | Model Context Protocol (MCP)`に移動
+ - または`Settings | Tools | Junie | MCP Settings`
+2. **`Add`をクリックして以下の設定を追加**:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+
+
+
+Warp Terminal
+
+1. **Warp設定を開く**:
+
+ - `Settings | AI | Manage MCP Servers`に移動
+2. **`+ Add`をクリックしてMCPサーバーを追加**:
+
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+参照: [Warp MCP設定ドキュメント](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server)
+
+
+
+
+Gemini CLI
+
+[Gemini CLI MCP設定ガイド](https://github.com/google-gemini/gemini-cli/blob/main/docs/tools/mcp-server.md)を参照し、以下の設定を使用:
+
+```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+```
+
+
+
+
+Gemini Code Assist
+
+[Gemini Code Assist MCP設定ガイド](https://cloud.google.com/gemini/docs/codeassist/use-agentic-chat-pair-programmer#configure-mcp-servers)を参照し、以下の設定を使用:
+
+```json
+{
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+}
+```
+
+
+
+
+Factory CLI (Droid)
+
+[Factory CLI MCP設定ドキュメント](https://docs.factory.ai/cli/configuration/mcp)を参照し、以下の設定を使用:
+
+```json
+{
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+}
+```
+
+
+
+
+Qoder & Qoder CLI
+
+1. **Qoder設定**を開く
+2. `MCP Server` → `+ Add`に移動
+3. 以下の設定を追加:
+ ```json
+ {
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+参照: [Qoder MCP設定ドキュメント](https://docs.qoder.com/user-guide/chat/model-context-protocol)
+
+
+
+
+Kiro
+
+**方法1: Kiro設定経由**
+
+1. **Kiro設定**を開く
+2. `Configure MCP` → `Open Workspace or User MCP Config`に移動
+
+**方法2: アクティビティバー経由**
+
+1. IDE **アクティビティバー**から`Kiro`を選択
+2. `MCP Servers` → `Click Open MCP Config`に移動
+
+**設定内容:**
+
+```json
+{
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+}
+```
+
+
+
+
+OpenCode
+
+1. **設定ファイルを作成または編集**:
+
+ - パス: `~/.config/opencode/opencode.json`
+ - ファイルが存在しない場合は作成
+2. **以下の設定を追加**:
+
+ ```json
+ {
+ "$schema": "https://opencode.ai/config.json",
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+ }
+ ```
+
+参照: [OpenCode MCP設定ドキュメント](https://opencode.ai/docs/mcp-servers)
+
+
+
+
+Visual Studio
+
+Visual Studio MCP設定ドキュメントを参照し、以下の設定を使用:
+
+```json
+{
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+}
+```
+
+
+
+
+Codex
+
+[Codex MCP設定ガイド](https://github.com/openai/codex/blob/main/docs/advanced.md#model-context-protocol-mcp)を参照し、以下の設定を使用:
+
+```json
+{
+ "mcpServers": {
+ "firstdata": {
+ "type": "streamable-http",
+ "url": "https://firstdata.deepminer.com.cn/mcp",
+ "headers": {
+ "Authorization": "Bearer "
+ }
+ }
+ }
+}
+```
+
+
+
+
+Amp
+
+[Amp MCP設定ドキュメント](https://ampcode.com/manual#mcp)を参照し、以下の設定を使用:
+
+```json
+{
+ "mcpServers": {
+ "firstdata": {
+ "type": "http",
+ "url": "http://localhost:8001/mcp",
+ "headers": {
+ "Authorization": "Bearer your_mcp_api_key_here"
+ }
+ }
+ }
+}
+```
+
+
+
+---
+
+#### 使用方法
+
+**設定後**、MCPサポートのAIプラットフォームで自然言語で質問できます:
+
+**質問例**:
+
+- "中国人民銀行のM2マネーサプライデータソースを探してください"
+- "APIアクセス付きのグローバル気候データが必要です。権威あるソースを推薦してください"
+- "香港証券取引所の上場企業開示情報を見つけてください"
+- "開発途上国のGDPデータはどこで見つけられますか?"
+
+検索Agentが最も権威あるデータソースを見つけて推薦します。
+
+## 🤝 貢献方法
+
+### 新しいデータソースを推薦
+
+権威的で信頼できるデータソースを見つけましたか?ぜひ推薦してください!
+
+**推薦プロセス:**
+
+1. [Issueを提出](Link)してデータソース情報と推薦理由を説明
+2. 権威性、データ品質、信頼性を評価します
+3. 評価後、データソースリポジトリに正式に含まれます
+
+**収録基準:**
+
+- ✅ 公式政府データソース(国家、省、地方レベル)
+- ✅ 公式国際機関データ
+- ✅ トップ学術機関と研究リポジトリ
+- ✅ 定期的に更新される権威ある業界データ
+
+## 💬 コミュニティとサポート
+
+コミュニティに参加して、データ研究者、開発者、貢献者とつながりましょう!
+
+### WeChatグループ
+
+
+

+
スキャンしてWeChatグループに参加
+
+
+> 💡 **参加のメリット**:
+> - データソースの推薦と利用経験を議論
+> - 技術サポートとベストプラクティスを取得
+> - プロジェクトの開発と貢献に参加
+> - 最新のデータソース更新と機能リリースについて学ぶ
+
+## 📄 ライセンス
+
+このプロジェクトは[MITライセンス](LICENSE)の下でオープンソースです。
+
+---
+
+
+ AI時代の信頼できる基盤を構築 | すべての深い思考を検証可能な事実に基づいて
+
+
+
+ Made with ❤️ by the FirstData Community
+
+
+
+ なぜ •
+ コアアドバンテージ •
+ データソース •
+ クイックスタート •
+ 貢献
+
+
+## Star History
+
+[](https://www.star-history.com/#MLT-OSS/FirstData&type=date&legend=top-left)
diff --git a/README.md b/README.md
index cb23fa3..4202d65 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# FirstData 🌐
-**[English](README.en.md)** | 中文
+**[English](README.en.md)** | 中文 | **[日本語](README.ja.md)**
---
@@ -1049,4 +1049,4 @@ code --add-mcp '{"name":"firstdata","type":"streamable-http","url":"https://firs
## Star History
-[](https://www.star-history.com/#MLT-OSS/FirstData&type=date&legend=top-left)
\ No newline at end of file
+[](https://www.star-history.com/#MLT-OSS/FirstData&type=date&legend=top-left)