Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-computer": {
"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 AI MCP Server 的电脑配置信息查询服务,支持跨平台(Windows、macOS、Linux)获取系统配置信息。
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.
Click any tool to inspect its schema.
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 devops
MCP server for using the GitLab API
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Computer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
一个基于 Spring AI MCP Server 的电脑配置信息查询服务,支持跨平台(Windows、macOS、Linux)获取系统配置信息。
mcp-server-computer/
├── src/
│ └── main/
│ ├── java/
│ │ └── cn/bugstack/mcp/server/computer/
│ │ ├── domain/
│ │ │ ├── model/ # 领域模型
│ │ │ └── service/ # 领域服务
│ │ └── McpServerComputerApplication.java
│ └── resources/
│ └── application.yml # 配置文件
└── pom.xml
mvn clean package
java -jar target/mcp-server-computer-1.0.0.jar
配置文件位于 src/main/resources/application.yml:
spring:
application:
name: mcp-server-computer
ai:
mcp:
server:
name: ${spring.application.name}
version: 1.0.0
main:
banner-mode: off
web-application-type: none # stdio 模式
通过 @Tool 注解暴露的工具方法,AI 可以调用 queryConfig 方法获取电脑配置信息。
返回信息包括:
平台特定信息获取:
systeminfo 命令获取详细信息system_profiler SPHardwareDataType 获取硬件信息lshw -short 获取硬件信息当作为 MCP Server 运行时,AI 可以通过以下方式调用:
{
"method": "tools/call",
"params": {
"name": "queryConfig",
"arguments": {
"computer": "my-computer"
}
}
}
queryConfig 工具方法ComputerService 中添加新的 @Tool 注解方法日志文件位置:data/log/mcp-server-computer.log
本项目采用 MIT 许可证。
Daniel G