Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"donts-mcp-server-demo": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
这是一个基于Spring Boot的Model Context Protocol (MCP) 服务器演示项目,提供了计算器、天气查询以及数据模型和API接口工具的功能。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Donts MCP Server Demo and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
这是一个基于Spring Boot的Model Context Protocol (MCP) 服务器演示项目,提供了计算器、天气查询以及数据模型和API接口工具的功能。
本项目是一个简单的MCP服务器实现,使用Spring Boot和WebFlux构建,提供了以下功能:
src/main/resources/application.yml 中配置和风天气API密钥# 编译项目
mvn clean package
# 运行项目
java -jar target/donts-ai-0.0.1-SNAPSHOT.jar
/sse/mcp/messages计算器工具可以处理各种数学表达式,包括:
示例:
2 + 2
(3 * 4) / 2
sqrt(16) + 5
天气查询工具可以获取指定城市的实时天气信息,包括:
示例:
北京
shanghai
guangzhou
项目新增了三个相互关联的工具,用于模拟数据模型查找、API接口查找和API执行的流程:
根据用户的描述查找匹配的数据模型,支持以下功能:
示例:
{
"description": "用户账号",
"maxResults": 3,
"includeDetails": true
}
根据数据模型查找对应的API接口,支持以下功能:
示例:
{
"modelId": "model_user",
"operationType": "查询",
"maxResults": 5,
"includeDetails": true
}
根据用户输入构造参数并调用实际接口,支持以下功能:
示例:
{
"apiId": "api_user_get",
"parameters": {"userId": "u123456"},
"validateParameters": true,
"detailedResponse": true
}
系统预置了三种业务场景的模拟数据:
项目基于Spring Boot和Model Context Protocol构建,使用Server-Sent Events (SSE) 作为通信机制。主要组件包括:
欢迎提交问题和改进建议!请遵循以下步骤:
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)本项目采用 MIT 许可证 - 详情请参阅 LICENSE 文件