DeepSeek

v1.7.0Coding Agentsstable

📇 ☁️ 🍎 🪟 🐧 - MCP server for DeepSeek AI with chat, reasoning, multi-turn sessions

ai-toolsclaude-codecodexdeepseekdeepseek-api
Share:
49
Stars
0
Downloads
0
Weekly
0/5

What is DeepSeek?

DeepSeek is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 📇 ☁️ 🍎 🪟 🐧 - mcp server for deepseek ai with chat, reasoning, multi-turn sessions

📇 ☁️ 🍎 🪟 🐧 - MCP server for DeepSeek AI with chat, reasoning, multi-turn sessions

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP protocol support

Use Cases

DeepSeek AI chat and reasoning
Multi-turn session management
arikusi

Maintainer

LicenseMIT License
Languagepython
Versionv1.7.0
UpdatedMay 20, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @arikusi/deepseek-mcp-server

Manual Installation

npx -y @arikusi/deepseek-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use DeepSeek

The DeepSeek MCP Server integrates DeepSeek AI's chat and reasoning models directly into any MCP-compatible AI client, providing multi-turn conversation management, extended thinking mode, JSON-mode output, and function calling support — all with per-request cost tracking. It ships as an npm package and can be run locally via npx, as a globally installed CLI, or connected to a hosted cloud endpoint, making it the fastest path to using DeepSeek-chat or DeepSeek-reasoner alongside Claude or other AI tools. The server also exposes resources for querying available models with their pricing and inspecting live usage statistics.

Prerequisites

  • Node.js 18 or higher installed
  • A DeepSeek API key (obtained from https://platform.deepseek.com)
  • npm or npx available in your PATH
  • An MCP-compatible client such as Claude Desktop, Claude Code, Cursor, or Windsurf
1

Obtain a DeepSeek API key

Sign up at https://platform.deepseek.com and generate an API key from the API Keys section of your account dashboard.

2

Add the server to Claude Code via CLI (quickest method)

Use the Claude Code CLI to register the server for the current user. Replace 'your-key-here' with your actual DeepSeek API key.

claude mcp add -s user deepseek npx @arikusi/deepseek-mcp-server -e DEEPSEEK_API_KEY=your-key-here
3

Or add to Claude Desktop via config file

Add the server block to claude_desktop_config.json if you prefer Claude Desktop or want to set additional options.

{
  "mcpServers": {
    "deepseek": {
      "command": "npx",
      "args": ["-y", "@arikusi/deepseek-mcp-server"],
      "env": {
        "DEEPSEEK_API_KEY": "your-deepseek-api-key",
        "DEFAULT_MODEL": "deepseek-chat",
        "SHOW_COST_INFO": "true",
        "SESSION_TTL_MINUTES": "30"
      }
    }
  }
}
4

Use the hosted endpoint (no local install)

Alternatively, connect directly to the public hosted endpoint via HTTP transport — no npm install required.

claude mcp add --transport http deepseek \
  https://deepseek-mcp.tahirl.com/mcp \
  --header "Authorization: Bearer YOUR_DEEPSEEK_API_KEY"
5

Verify the server is connected

Ask Claude to list available DeepSeek models or check the server configuration to confirm the connection is working.

DeepSeek Examples

Client configuration

Add this to claude_desktop_config.json. DEEPSEEK_API_KEY is required; the other env vars are optional overrides.

{
  "mcpServers": {
    "deepseek": {
      "command": "npx",
      "args": ["-y", "@arikusi/deepseek-mcp-server"],
      "env": {
        "DEEPSEEK_API_KEY": "your-deepseek-api-key",
        "DEFAULT_MODEL": "deepseek-chat",
        "SHOW_COST_INFO": "true",
        "REQUEST_TIMEOUT": "60000",
        "SESSION_TTL_MINUTES": "30"
      }
    }
  }
}

Prompts to try

Invoke DeepSeek models through Claude using the deepseek_chat and deepseek_sessions tools.

- "Use DeepSeek to explain the difference between RAG and fine-tuning in plain English"
- "Ask DeepSeek reasoner to solve this math problem step by step: what is the sum of the first 100 prime numbers?"
- "Start a DeepSeek session and ask it to review this Python function for bugs, then follow up with a refactored version"
- "What DeepSeek models are available and what are their current prices per million tokens?"
- "Show me the current DeepSeek usage statistics for this session"

Troubleshooting DeepSeek

Authentication error: Invalid API key

Verify DEEPSEEK_API_KEY is set correctly in the env block of your config. Keys are available at https://platform.deepseek.com under API Keys. Ensure there are no extra spaces or quotes around the value.

npx @arikusi/deepseek-mcp-server takes a long time to start

The first run downloads the package from npm. Subsequent runs use the npx cache and are faster. Alternatively, install globally with 'npm install -g @arikusi/deepseek-mcp-server' to avoid repeated downloads.

Multi-turn session context is lost between conversations

Session history is retained for SESSION_TTL_MINUTES (default: 30 minutes). Pass the same session_id in each deepseek_chat call to maintain context. If sessions expire too quickly, set SESSION_TTL_MINUTES to a higher value in the env block.

Frequently Asked Questions about DeepSeek

What is DeepSeek?

DeepSeek is a Model Context Protocol (MCP) server that 📇 ☁️ 🍎 🪟 🐧 - mcp server for deepseek ai with chat, reasoning, multi-turn sessions It connects AI assistants to external tools and data sources through a standardized interface.

How do I install DeepSeek?

Install via npm with the command: npx -y @arikusi/deepseek-mcp-server. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with DeepSeek?

DeepSeek works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is DeepSeek free to use?

Yes, DeepSeek is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "deepseek": { "command": "npx", "args": ["-y", "@arikusi/deepseek-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use DeepSeek?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides