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