MCP cover image
See in Github
2025-03-12

Ein Modellkontext -Protokollserver, der Softwareverwaltungsfunktionen für Ihren Computer bietet.

1

Github Watches

3

Github Forks

2

Github Stars

English | 中文

Software MCP Server

A Model Context Protocol server that provides software management capabilities for your computer. This server enables LLMs to get a list of installed software, open applications, and close running programs, with support for multiple operating systems (Windows, macOS, Linux).

Available Tools

  • get_software_list_tool - Get a list of installed software on the computer.

    • Returns a list of software names.
  • open_software - Open software by name.

    • Required arguments:
      • name (string): The name of the software to open.
  • close_software - Close running software by name (currently Windows-only).

    • Required arguments:
      • name (string): The name of the software to close.

Installation

Using uv (recommended)

When using uv, no specific installation is needed. We can use uvx to directly run mcp-software-server.

Using PIP

Alternatively, you can install dependencies via pip:

pip install mcp_server_software

Configuration

Configure for Claude.app

Add to your Claude settings:

Using uvx
"mcpServers": {
  "software_manager": {
    "command": "uvx",
    "args": ["mcp-server-software"]
  }
}
Using uv
"mcpServers": {
  "software_manager": {
        "command": "uv",
        "args": [
          "--directory",
          "{path/to/mcp_server_software.py}",
          "run",
          "mcp_server_software.py"
        ],
        "env": {},
        "disabled": false,
        "alwaysAllow": []
    }
}
Using manual Python command
"mcpServers": {
  "software_manager": {
    "command": "python",
    "args": ["path/to/mcp_server_software.py"]
  }
}

Platform Support

  • Windows: Full functionality (software listing, opening, closing)
  • macOS: Software listing and opening only
  • Linux: Software listing and opening only

Example Interactions

  1. Get software list:
{
  "name": "get_software_list_tool",
  "arguments": {}
}

Response:

[
  "Chrome",
  "Firefox",
  "Visual Studio Code",
  "Notepad++",
  ...
]
  1. Open software:
{
  "name": "open_software",
  "arguments": {
    "name": "Chrome"
  }
}

Response:

"Opened Chrome"
  1. Close software (Windows only):
{
  "name": "close_software",
  "arguments": {
    "name": "Chrome"
  }
}

Response:

"Closed Chrome"

Debugging

You can use the MCP inspector to debug the server:

npx @modelcontextprotocol/inspector python mcp_server_software.py

Examples of Questions for Claude/AI

  1. "What applications do I have installed on my computer?"
  2. "Can you open Notepad for me?"
  3. "Please close Chrome browser"
  4. "Show me all available software on my system"

How It Works

The server creates and maintains a JSON file (software_list.json) that maps software names to their executable paths. On Windows, it scans Start Menu shortcuts, on macOS it looks in the Applications folder, and on Linux it examines desktop entry files.

You can manually edit this JSON file to add custom software entries:

{
  "CustomApp": "C:\\Path\\To\\Custom\\App.exe"
}

Requirements

  • Python 3.7+
  • psutil
  • mcp
  • pywin32 (Windows only)

Contributing

Contributions are welcome to help expand and improve mcp-software-server. Consider adding support for:

  • Better closing support on macOS/Linux
  • Enhanced software detection
  • Software installation/uninstallation capabilities
  • Additional software management features

License

This project is licensed under the MIT License. See the LICENSE file for details.

相关推荐

  • NiKole Maxwell
  • I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • Bora Yalcin
  • Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • Contraband Interactive
  • Emulating Dr. Jordan B. Peterson's style in providing life advice and insights.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • rustassistant.com
  • Your go-to expert in the Rust ecosystem, specializing in precise code interpretation, up-to-date crate version checking, and in-depth source code analysis. I offer accurate, context-aware insights for all your Rust programming questions.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • apappascs
  • Entdecken Sie die umfassendste und aktuellste Sammlung von MCP-Servern auf dem Markt. Dieses Repository dient als zentraler Hub und bietet einen umfangreichen Katalog von Open-Source- und Proprietary MCP-Servern mit Funktionen, Dokumentationslinks und Mitwirkenden.

  • Mintplex-Labs
  • Die All-in-One-Desktop & Docker-AI-Anwendung mit integriertem Lappen, AI-Agenten, No-Code-Agent Builder, MCP-Kompatibilität und vielem mehr.

  • modelcontextprotocol
  • Modellkontext -Protokollserver

  • n8n-io
  • Fair-Code-Workflow-Automatisierungsplattform mit nativen KI-Funktionen. Kombinieren Sie visuelles Gebäude mit benutzerdefiniertem Code, SelbstHost oder Cloud, 400+ Integrationen.

  • OffchainLabs
  • GO -Umsetzung des Ethereum -Beweises des Anteils

  • WangRongsheng
  • 🧑‍🚀 全世界最好的 llm 资料总结(数据处理、模型训练、模型部署、 O1 模型、 MCP 、小语言模型、视觉语言模型) | Zusammenfassung der weltbesten LLM -Ressourcen.

  • wong2
  • Eine kuratierte Liste von Servern des Modellkontextprotokolls (MCP)

    Reviews

    3 (1)
    Avatar
    user_WTd9o0vu
    2025-04-15

    As a dedicated user of the Dgraph MCP Server by johnymontana, I can't recommend it highly enough. The seamless performance and the intuitive interface have significantly improved our database management. The detailed documentation and responsive support make it a perfect choice for both beginners and experienced developers. Check it out here: https://mcp.so/server/dgraph-mcp-server/johnymontana.