Skip to main content
Glama

get-installed-apps

Retrieve a list of installed applications on your computer using this tool, enabling quick access to software inventory and system details.

Instructions

Get my computer's installed apps

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'get-installed-apps' tool. It fetches the list of installed apps using getInstalledApps() and formats the result as JSON text in the MCP response format.
    async () => { const apps = await getInstalledApps(); return { content: [ { type: "text", text: JSON.stringify(apps, null, 2), }, ], }; }
  • src/index.ts:15-29 (registration)
    Registers the 'get-installed-apps' tool on the MCP server with its name, description, and handler function.
    server.tool( "get-installed-apps", "Get my computer's installed apps", async () => { const apps = await getInstalledApps(); return { content: [ { type: "text", text: JSON.stringify(apps, null, 2), }, ], }; } );
  • Imports the getInstalledApps utility function, which provides the core logic for retrieving installed applications and is called within the tool handler.
    import { getInstalledApps } from "get-installed-apps";

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Xutaotaotao/mcp-get-installed-apps'

If you have feedback or need assistance with the MCP directory API, please join our Discord server