Skip to main content
Glama

IT-MCP

by acampkin95
software.ts701 B
import { CommandRunner } from "../utils/commandRunner.js"; export class SoftwareService { public constructor(private readonly runner: CommandRunner) {} public async listBrewOutdated() { return this.runner.run("brew outdated --verbose"); } public async cleanupBrew() { return this.runner.run("brew cleanup", { requiresSudo: false }); } public async listApplicationsSortedBySize() { const command = "du -sh /Applications/* | sort -h"; return this.runner.run(command); } public async listLoginItems() { const command = "osascript -e 'tell application \"System Events\" to get the name of every login item'"; return this.runner.run(command); } }

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/acampkin95/MCP'

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