Skip to main content
Glama
kira4094

DeepSeek Subagent MCP Server

by kira4094

DeepSeek Subagent MCP Server

MCP-Server, der es Codex (oder jedem MCP-Client) ermöglicht, Teilaufgaben an DeepSeek als Sub-Agenten zu delegieren. Ein einziges Tool deepseek_task: Übergib eine Aufgabe (+ optionalen Kontext) und erhalte die endgültige Antwort von DeepSeek.

Funktionen

  • 🧠 Ein einziges Tool deepseek_task — delegiere unabhängige Aufgaben (Recherche, Entwurf, Review, Refactoring, Analyse)

  • 💰 Standardmäßig deepseek-v4-flash (kostengünstig), umschaltbar auf deepseek-v4-pro per Umgebungsvariable

  • 🔍 Zeigt reasoning_content (V4-Denkmodus) als <thinking>-Block an

  • ⚡ Keine Abhängigkeiten außer MCP, Ein-Zeilen-Deployment per npx

Related MCP server: deepseek-mcp

Voraussetzungen

Installation und Ausführung

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

Umgebungsvariablen

Variable

Erforderlich

Standard

Beschreibung

DEEPSEEK_API_KEY

Ihr DeepSeek-API-Schlüssel.

DEEPSEEK_MODEL

deepseek-v4-flash

Modell. Auch deepseek-v4-pro.

DEEPSEEK_BASE_URL

https://api.deepseek.com

Endpunkt überschreiben (für Proxys).

DEEPSEEK_MAX_TOKENS

8192

Standardwert für maximale Ausgabetokens.

Codex-Konfiguration

Füge das zur MCP-Konfiguration von Codex hinzu:

{
  "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"
      }
    }
  }
}

Oder führe es aus einem lokalen Checkout aus:

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

Tool: deepseek_task

Parameter

Typ

Erforderlich

Beschreibung

task

string

Die Teilaufgabe für DeepSeek. Beschreibe genau, was zu tun ist und welches Ausgabeformat erwartet wird.

context

string

Optionaler Kontext (Code, Notizen, Snippets).

system

string

Optionaler eigener System-Prompt (Standard: Persona eines Sub-Agenten).

max_tokens

number

Maximale Ausgabetokens. Standard: 8192.

temperature

number

0-2. Weglassen, um den Modellstandard zu verwenden.

Beispielverwendung

# 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")

Verwandte Projekte

Lizenz

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