Back to MCP directory
publicPublicdnsLocal runtime

mcp-get-installed-apps

一个提供计算机已安装应用程序信息的MCP服务器,支持MacOS和Windows系统,可与兼容的AI助手集成。

article

README

🚀 获取已安装应用程序MCP服务器

这是一个模型上下文协议(MCP)服务器,可提供计算机上已安装应用程序的信息,支持MacOS和Windows系统。

🚀 快速开始

获取已安装应用程序MCP服务器是一个简单的MCP实现,它能让AI助手发现你的计算机上安装了哪些应用程序。该服务器实现了模型上下文协议(MCP)规范,可与兼容的AI客户端实现无缝集成。

✨ 主要特性

  • 返回计算机上已安装应用程序的完整列表
  • 可轻松与任何兼容MCP的AI客户端集成
  • 轻量级实现,依赖项极少

📦 安装指南

git clone https://github.com/Xutaotaotao/mcp-get-installed-apps.git
cd git-mcp-server
npm install
npm run build

📚 详细文档

项目结构

mcp-get-installed-apps
├── src
│   ├── index.ts               # 应用程序入口点
├── tsconfig.json              # TypeScript配置文件
├── package.json               # npm配置文件
└── README.md                  # 项目文档

MCP配置

安装完成后,你可以在MCP JSON配置中配置获取已安装应用程序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工具描述

获取已安装应用程序MCP服务器提供了以下工具,可通过MCP协议调用:

获取已安装应用程序 (get-installed-apps)

返回计算机上所有已安装应用程序的列表。

参数:

返回值:

  • 成功:包含所有已安装应用程序JSON数据的文本内容
  • 失败:包含错误信息的文本内容
READY-TO-PASTE CONFIG

MCP client config generator

Choose your client, fill the required environment variables, then copy a config generated from this server's published metadata

terminal
data_object

This entry does not contain a standard command or remote URL, so a safe client config cannot be generated automatically

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client