This repository contains a Model Control Protocol (MCP) server implementation that allows Claude Desktop to use Deepseek models running in Docker.
git clone https://github.com/vincentf305/mcp-server-deepseek.git
cd mcp-server-deepseek
pip install -r requirements.txt
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.
docker build -t mcp_server_deepseek .
docker run -d \
--name mcp-server-deepseek \
-p 8765:8765 \
-e DEEPSEEK_API_KEY=your_api_key_here \
mcp-server-deepseek
python -m mcp_server_deepseek.server
Ensure you have a Deepseek API key
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"
}
}
}
}
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)MIT License - see the LICENSE file for details
Seamless access to top MCP servers powering the future of AI integration.