Deepseek MCP Server
Deepseek統合用のMCPサーバー
このリポジトリには、Claude Desktop が Docker で実行されている Deepseek モデルを使用できるようにするモデル制御プロトコル (MCP) サーバー実装が含まれています。
前提条件
ドッカー
Python 3.11以降
Deepseek APIキー
クロードデスクトップ
Related MCP server: Deepseek R1 MCP Server
インストール
リポジトリをクローンします。
git clone https://github.com/vincentf305/mcp-server-deepseek.git
cd mcp-server-deepseek依存関係をインストールします:
pip install -r requirements.txt環境変数の設定
プロジェクトのルート ディレクトリに.envファイルを作成し、次の環境変数を追加します。
DEEPSEEK_API_KEY=your_api_key_hereyour_api_key_here実際の Deepseek API キーに置き換えてください。
サーバーの実行
Dockerの使用
Docker イメージをビルドします。
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.serverClaude Desktopでの使用
Deepseek APIキーがあることを確認してください
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"
}
}
}
}新しい設定をロードするには、Claude Desktopを再起動してください。
貢献
リポジトリをフォークする
機能ブランチを作成します(
git checkout -b feature/amazing-feature)変更をコミットします (
git commit -m 'Add some amazing feature')ブランチにプッシュする (
git push origin feature/amazing-feature)プルリクエストを作成する
ライセンス
MITライセンス - 詳細についてはLICENSEファイルを参照してください
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