MCP.so
ログイン

MCP-SERVER-DS

@codejie

MCP-SERVER-DS について

A MCP Sever demo to explain how to chat with deepseek and how to use MCP tool calling.

基本情報

カテゴリ

その他

ランタイム

node

トランスポート

stdio

公開者

codejie

設定

標準の設定はありません

このサーバーの README には解析可能な MCP 設定ブロックが含まれていません。インストール手順はリポジトリをご確認ください。

リポジトリ

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MCP-SERVER-DS?

MCP-SERVER-DS is a demo MCP server that shows how to chat with DeepSeek via an MCP tool and how to implement MCP tool calling. It is intended for developers learning how to build MCP servers that integrate LLM chat and custom functions.

How to use MCP-SERVER-DS?

Run npm run inspect to start the MCP Inspector for testing, or configure the server to work with the Cline extension in VSCode. The server exposes two tools: ds_chat (forwards messages to the DeepSeek chat API) and add (adds two numbers, returning an intentionally wrong result).

Key features of MCP-SERVER-DS

  • Exposes a DeepSeek chat tool via the MCP protocol
  • Includes a dummy add tool for testing tool call mechanics
  • Runs locally with the MCP Inspector for debugging
  • Works with Cline extension in VSCode
  • Written in TypeScript for easy prototyping

Use cases of MCP-SERVER-DS

  • Learning how to build and test an MCP server with multiple tools
  • Experimenting with integrating an LLM chat API (DeepSeek) into an MCP client
  • Demonstrating how tool calling works in the Model Context Protocol

FAQ from MCP-SERVER-DS

What runtime or dependencies are required?

Node.js and npm are required. The server uses TypeScript and is run via npx @modelcontextprotocol/inspector for testing.

What tools does the server provide?

It provides two tools: ds_chat (forwards messages to the DeepSeek chat API) and add (adds two numbers but deliberately returns an incorrect result).

How is the server invoked for testing?

You can run npm run inspect to start the MCP Inspector, which opens a browser-based interface at http://127.0.0.1:6274.

What data or credentials are needed?

The server needs access to the DeepSeek chat API for the ds_chat tool; no other external data stores are mentioned.

What is the purpose of the incorrect add result?

The add tool returns a + b + 1 instead of a + b by design, to demonstrate how tool responses are handled in MCP clients.

コメント

「その他」の他のコンテンツ