Skip to main content
Glama
kira4094

DeepSeek Subagent MCP Server

by kira4094

DeepSeek Subagent MCP Server

Codex(または任意のMCPクライアント)がサブタスクをDeepSeekにサブエージェントとして委譲できるようにするMCPサーバーです。 単一のツール deepseek_task: タスク(+任意のコンテキスト)を渡すと、DeepSeekの最終回答が返ってきます。

機能

  • 🧠 単一のツール deepseek_task — 独立した作業(調査/ドラフト/レビュー/リファクタリング/分析)を委任する

  • 💰 デフォルトはdeepseek-v4-flash(コスト効率が高い)、環境変数でdeepseek-v4-proに切り替え可能

  • 🔍 reasoning_content(V4の思考モード)を<thinking>ブロックとして表示

  • ⚡ MCP以外の依存関係ゼロ、npxの一行でデプロイ

Related MCP server: deepseek-mcp

要件

インストールと実行

cd deepseek-subagent-mcp-server
npm install
npm start

環境変数

変数

必須

デフォルト

説明

DEEPSEEK_API_KEY

あなたのDeepSeek APIキー。

DEEPSEEK_MODEL

deepseek-v4-flash

モデル。deepseek-v4-proも指定可能。

DEEPSEEK_BASE_URL

https://api.deepseek.com

エンドポイントを上書き(プロキシ用)。

DEEPSEEK_MAX_TOKENS

8192

デフォルトの最大出力トークン数。

Codex設定

Codex の MCP 設定に追加してください:

{
  "mcpServers": {
    "deepseek-subagent": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "deepseek-subagent-mcp-server"],
      "env": {
        "DEEPSEEK_API_KEY": "your-deepseek-api-key",
        "DEEPSEEK_MODEL": "deepseek-v4-flash"
      }
    }
  }
}

または、ローカルチェックアウトから実行する場合:

{
  "mcpServers": {
    "deepseek-subagent": {
      "command": "node",
      "args": ["D:\\GitHub\\MCP\\deepseek-subagent-mcp-server\\src\\index.js"],
      "env": {
        "DEEPSEEK_API_KEY": "your-key-here"
      }
    }
  }
}

ツール: deepseek_task

パラメータ

必須

説明

task

string

DeepSeekに委任するサブタスク。「行うこと」と「出力形式」を具体的に指定してください。

context

string

任意のコンテキスト資料(コード、メモ、スニペット)。

system

string

任意のカスタムシステムプロンプト(デフォルトはサブエージェント用のペルソナ)。

max_tokens

number

最大出力トークン数。デフォルトは8192。

temperature

number

0〜2。省略するとモデルのデフォルトが使われます。

使用例

# Delegate a code review
deepseek_task(task="Review this function for bugs and edge cases", context="<code>...")

# Delegate a research task
deepseek_task(task="Summarize the key risks of a subscription pricing model")

関連プロジェクト

ライセンス

MIT

Install Server
F
license - not found
A
quality
B
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

View all related MCP servers

Related MCP Connectors

  • A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

  • Free public MCP for AI agents — 193 tools, 44 workflows. No API key.

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/kira4094/deepseek-subagent-mcp-server'

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