Skip to main content
Glama

Deepseek MCP Server

MCP Server for Deepseek Integration

This repository contains a Model Control Protocol (MCP) server implementation that allows Claude Desktop to use Deepseek models running in Docker.

Prerequisites

  • Docker
  • Python 3.11 or later
  • A Deepseek API key
  • Claude Desktop

Installation

  1. Clone the repository:
git clone https://github.com/vincentf305/mcp-server-deepseek.git cd mcp-server-deepseek
  1. Install dependencies:
pip install -r requirements.txt

Setup Environment Variables

Create a .env file in the root directory of the project and add the following environment variable:

DEEPSEEK_API_KEY=your_api_key_here

Make sure to replace your_api_key_here with your actual Deepseek API key.

Running the Server

Using Docker

  1. Build the Docker image:
docker build -t mcp_server_deepseek .
  1. Run the container:
docker run -d \ --name mcp-server-deepseek \ -p 8765:8765 \ -e DEEPSEEK_API_KEY=your_api_key_here \ mcp-server-deepseek

Running Locally

python -m mcp_server_deepseek.server

Usage with Claude Desktop

  1. Ensure you have a Deepseek API key
  2. Add the following to your Claude Desktop configuration (claude_desktop_config.json):
{ "mcpServers": { "deepseek-server": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "DEEPSEEK_API_KEY", "mcp_server_deepseek" ], "env": { "DEEPSEEK_API_KEY": "your_api_key_here" } } } }
  1. Restart Claude Desktop to load the new configuration

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Create a Pull Request

License

MIT License - see the LICENSE file for details

-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

A Model Control Protocol server implementation that allows Claude Desktop to use Deepseek models running in Docker, enabling seamless integration between Claude Desktop and Deepseek's language models.

  1. Prerequisites
    1. Installation
      1. Setup Environment Variables
        1. Running the Server
          1. Using Docker
          2. Running Locally
        2. Usage with Claude Desktop
          1. Contributing
            1. License

              Related MCP Servers

              • -
                security
                F
                license
                -
                quality
                A Model Context Protocol server that enables Claude to manage software development projects with complete context awareness and code execution through Docker environments.
                Last updated -
                5
                3
                Python
                • Apple
              • A
                security
                A
                license
                A
                quality
                A collection of Model Context Protocol servers that enable Claude Desktop to provide development assistance capabilities with filesystem, Git, shell command, and web search functionality without incurring API usage costs.
                Last updated -
                2
                19
                TypeScript
                MIT License
                • Apple
              • -
                security
                F
                license
                -
                quality
                A Model Control Protocol server that provides web search capabilities and similarity search functionality for Claude Desktop, allowing users to perform web searches and extract relevant information from previous search results.
                Last updated -
                2
                Python
                • Apple
                • Linux
              • A
                security
                A
                license
                A
                quality
                Allows seamless integration of DeepSeek's language models with MCP-compatible applications like Claude Desktop, supporting features such as model selection, temperature control, and multi-turn conversations with automatic model fallback.
                Last updated -
                2
                76
                2
                MIT License
                • Apple
                • Linux

              View all related MCP servers

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

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