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.

评论

其他 分类下的更多 MCP 服务器