Skip to main content
Glama

Deepseek MCP Server

Deepseek統合用のMCPサーバー

このリポジトリには、Claude Desktop が Docker で実行されている Deepseek モデルを使用できるようにするモデル制御プロトコル (MCP) サーバー実装が含まれています。

前提条件

  • ドッカー
  • Python 3.11以降
  • Deepseek APIキー
  • クロードデスクトップ

インストール

  1. リポジトリをクローンします。
git clone https://github.com/vincentf305/mcp-server-deepseek.git cd mcp-server-deepseek
  1. 依存関係をインストールします:
pip install -r requirements.txt

環境変数の設定

プロジェクトのルート ディレクトリに.envファイルを作成し、次の環境変数を追加します。

DEEPSEEK_API_KEY=your_api_key_here

your_api_key_here実際の Deepseek API キーに置き換えてください。

サーバーの実行

Dockerの使用

  1. Docker イメージをビルドします。
docker build -t mcp_server_deepseek .
  1. コンテナを実行します。
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

Claude Desktopでの使用

  1. Deepseek APIキーがあることを確認してください
  2. 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" } } } }
  1. 新しい設定をロードするには、Claude Desktopを再起動してください。

貢献

  1. リポジトリをフォークする
  2. 機能ブランチを作成します( git checkout -b feature/amazing-feature
  3. 変更をコミットします ( git commit -m 'Add some amazing feature' )
  4. ブランチにプッシュする ( git push origin feature/amazing-feature )
  5. プルリクエストを作成する

ライセンス

MITライセンス - 詳細についてはLICENSEファイルを参照してください

-
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.

Claude Desktop が Docker で実行されている Deepseek モデルを使用できるようにするモデル制御プロトコル サーバーの実装。これにより、Claude Desktop と Deepseek の言語モデル間のシームレスな統合が可能になります。

  1. 前提条件
    1. インストール
      1. 環境変数の設定
        1. サーバーの実行
          1. Dockerの使用
          2. ローカルで実行
        2. Claude Desktopでの使用
          1. 貢献
            1. ライセンス

              Related MCP Servers

              • A
                security
                A
                license
                A
                quality
                A 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.
                Last updated -
                1
                40
                JavaScript
                MIT License
                • Apple
                • Linux
              • 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
                A
                license
                -
                quality
                A custom Model Context Protocol server that gives Claude Desktop and other LLMs access to file system operations and command execution capabilities through standardized tool interfaces.
                Last updated -
                22
                Python
                Apache 2.0
                • Apple
                • Linux
              • A
                security
                F
                license
                A
                quality
                A server built on mcp-framework that enables integration with Claude Desktop through the Model Context Protocol.
                Last updated -
                1
                1
                • Apple

              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