mcp获取已安装应用
识别到的语言类型为:英语 翻译结果:获取已安装的应用程序
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"get-installed-apps": {
"args": [
"mcp-get-installed-apps/build/index.js"
],
"command": "node"
}
}
}
服务介绍
获取已安装应用程序的 MCP 服务器
这是一个 Model Context Protocol (MCP) 服务器,提供有关您计算机上已安装应用程序的信息,支持 MacOS 和 Windows。
项目介绍
获取已安装应用程序的 MCP 服务器是一个简单的 MCP 实现,允许 AI 助手发现您的计算机上安装了哪些应用程序。该服务器实现了 Model Context Protocol (MCP) 规范,从而能够与兼容的 AI 客户端无缝集成。
功能
- 返回您计算机上已安装应用程序的全面列表
- 与任何兼容 MCP 的 AI 客户端简单集成
- 轻量级实现,依赖项最少
项目结构
mcp-get-installed-apps
├── src
│ ├── index.ts # Application entry point
├── tsconfig.json # TypeScript configuration file
├── package.json # npm configuration file
└── README.md # Project documentation
安装
git clone https://github.com/Xutaotaotao/mcp-get-installed-apps.git
cd git-mcp-server
npm install
npm run build
MCP 配置
安装后,您可以在 MCP JSON 配置中配置 Get Installed Apps MCP:
{
"mcpServers": {
"get-installed-apps": {
"command": "node",
"args": [
"mcp-get-installed-apps/build/index.js"
]
}
}
}
在 AI 客户端中配置 MCP JSON
- Claude 客户端: https://modelcontextprotocol.io/quickstart/user
- Raycast: 需要安装 MCP 插件
- Cursor: https://docs.cursor.com/context/model-context-protocol#configuring-mcp-servers
MCP 工具描述
Get Installed Apps MCP 服务器提供了以下工具,可以通过 MCP 协议调用:
获取已安装的应用程序 (get-installed-apps)
返回您计算机上所有已安装应用程序的列表。
参数:
- 无
返回值:
- 成功:包含所有已安装应用程序 JSON 数据的文本内容
- 失败:包含错误信息的文本内容