Deepseek MCP Server
Servidor MCP para la integración de Deepseek
Este repositorio contiene una implementación de servidor de Protocolo de control de modelos (MCP) que permite a Claude Desktop utilizar modelos Deepseek que se ejecutan en Docker.
Prerrequisitos
Estibador
Python 3.11 o posterior
Una clave API de Deepseek
Escritorio de Claude
Related MCP server: Deepseek R1 MCP Server
Instalación
Clonar el repositorio:
git clone https://github.com/vincentf305/mcp-server-deepseek.git
cd mcp-server-deepseekInstalar dependencias:
pip install -r requirements.txtConfigurar variables de entorno
Cree un archivo .env en el directorio raíz del proyecto y agregue la siguiente variable de entorno:
DEEPSEEK_API_KEY=your_api_key_hereAsegúrese de reemplazar your_api_key_here con su clave API de Deepseek real.
Ejecución del servidor
Usando Docker
Construya la imagen de Docker:
docker build -t mcp_server_deepseek .Ejecute el contenedor:
docker run -d \
--name mcp-server-deepseek \
-p 8765:8765 \
-e DEEPSEEK_API_KEY=your_api_key_here \
mcp-server-deepseekEjecutando localmente
python -m mcp_server_deepseek.serverUso con Claude Desktop
Asegúrese de tener una clave API de Deepseek
Agregue lo siguiente a su configuración de Claude Desktop (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"
}
}
}
}Reinicie Claude Desktop para cargar la nueva configuración
Contribuyendo
Bifurcar el repositorio
Crea tu rama de funciones (
git checkout -b feature/amazing-feature)Confirme sus cambios (
git commit -m 'Add some amazing feature')Empujar a la rama (
git push origin feature/amazing-feature)Crear una solicitud de extracción
Licencia
Licencia MIT: consulte el archivo de LICENCIA para obtener más detalles
This server cannot be installed
Maintenance
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
- AlicenseBqualityFmaintenanceA powerful Model Context Protocol (MCP) server for Docker operations, enabling seamless container and compose stack management through Claude AI.4497MIT
- AlicenseBqualityFmaintenanceA Node.js/TypeScript implementation of a Model Context Protocol server for the Deepseek R1 language model, optimized for reasoning tasks with a large context window and fully integrated with Claude Desktop.169MIT
- FlicenseDqualityDmaintenanceA server built on mcp-framework that enables integration with Claude Desktop through the Model Context Protocol.11
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server for Claude Desktop that connects to 302AI's API services, allowing users to integrate and leverage 302AI capabilities through a structured communication interface.93821MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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