Deepseek MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HTTP_PORT | No | HTTP server port (when TRANSPORT=http) | 3000 |
| TRANSPORT | No | Transport mode: stdio or http | stdio |
| MAX_RETRIES | No | Maximum retry count for failed requests | 2 |
| MAX_SESSIONS | No | Maximum number of concurrent sessions | 100 |
| DEFAULT_MODEL | No | Default model for requests | deepseek-chat |
| SHOW_COST_INFO | No | Show cost info in responses | true |
| REQUEST_TIMEOUT | No | Request timeout in milliseconds | 60000 |
| DEEPSEEK_API_KEY | Yes | Your DeepSeek API key | |
| FALLBACK_ENABLED | No | Enable automatic model fallback on errors | true |
| DEEPSEEK_BASE_URL | No | Custom API endpoint | https://api.deepseek.com |
| ENABLE_MULTIMODAL | No | Enable multimodal (image) input support | false |
| MAX_MESSAGE_LENGTH | No | Maximum message content length (characters) | 100000 |
| SESSION_TTL_MINUTES | No | Session time-to-live in minutes | 30 |
| MAX_SESSION_MESSAGES | No | Max messages per session (sliding window) | 200 |
| SKIP_CONNECTION_TEST | No | Skip startup API connection test | false |
| CIRCUIT_BREAKER_THRESHOLD | No | Consecutive failures before circuit opens | 5 |
| CIRCUIT_BREAKER_RESET_TIMEOUT | No | Milliseconds before circuit half-opens | 30000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| deepseek_chatA | Chat with DeepSeek V4 models. deepseek-v4-flash (fast, economical) and deepseek-v4-pro (most capable), both 1M context with optional chain-of-thought thinking mode. deepseek-chat and deepseek-reasoner are deprecated aliases, still accepted for backward compatibility (resolve to v4-flash) but slated for removal; prefer the v4 names. Features: multi-turn sessions (session_id), function calling (tools parameter), thinking mode, JSON output mode, multimodal input (when enabled), automatic cost tracking, and model fallback with circuit breaker resilience. |
| deepseek_fimA | Fill-in-the-Middle (FIM) completion with DeepSeek V4. Provide a prompt (prefix) and an optional suffix; the model completes the text in between. Ideal for code completion and content infilling. Runs in non-thinking mode on the Beta endpoint; output is capped at 4K tokens. The deprecated aliases deepseek-chat and deepseek-reasoner are still accepted and resolve to deepseek-v4-flash (FIM has no thinking mode). Includes automatic cost tracking and model fallback with circuit breaker resilience. |
| deepseek_sessionsA | Manage multi-turn conversation sessions. List active sessions, delete a specific session, or clear all sessions. Sessions store conversation history for use with the session_id parameter in deepseek_chat. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| debug_with_reasoning | Debug code issues using DeepSeek R1 reasoning model with step-by-step analysis |
| code_review_deep | Comprehensive code review analyzing quality, security, performance, and best practices |
| research_synthesis | Research a topic and synthesize information into a structured report |
| strategic_planning | Analyze options and create strategic plans with reasoning for each decision |
| explain_like_im_five | Explain complex topics in simple terms using analogies and reasoning |
| mathematical_proof | Prove mathematical statements with rigorous step-by-step reasoning |
| argument_validation | Analyze arguments for logical fallacies and reasoning errors |
| creative_ideation | Generate creative ideas with reasoning for feasibility and value |
| cost_comparison | Compare costs of different LLMs for a task and show savings with DeepSeek |
| pair_programming | Interactive coding assistant that explains reasoning for code decisions |
| function_call_debug | Debug function calling issues with DeepSeek models |
| create_function_schema | Generate JSON Schema for function calling from natural language description |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| models | List of available DeepSeek models with capabilities, context limits, and pricing information |
| config | Current server configuration including base URL, timeouts, session settings, and fallback status. API key is masked for security. |
| usage | Real-time usage statistics including total requests, token consumption, costs, active sessions, and cache hit ratio. Updated on every read. |
TDQS
Scored across 3 tools
Each tool targets a clearly distinct capability: chat completion, fill-in-the-middle completion, and session management. There is no overlap in purpose or behavior, so an agent can reliably select the right tool.
All tools share the deepseek_ prefix and use lowercase snake_case, which is predictable. However, the suffix varies in part-of-speech (chat is a verb, fim is an acronym, sessions is a noun), so it is not a strict verb_noun pattern.
Three tools is a well-scoped surface for a model access server: one for interactive chat, one for code infilling, and one for session lifecycle management. Each tool earns its place without redundancy or bloat.
The core model capabilities (chat and FIM) plus session lifecycle management cover the main workflows. Minor gaps exist, such as no explicit session creation tool (sessions are implicitly created via chat) and no way to inspect a session's message history directly.