Skip to main content
Glama
installation.md1.4 kB
# Installation Guide ## Quick Start ### 1. Clone Repository ```bash git clone https://github.com/yourusername/MSI-MCP-Server.git cd MSI-MCP-Server ``` ### 2. Setup Python Environment ```bash # Create virtual environment python -m venv .venv # Activate (Windows) .venv\Scripts\activate # Activate (Linux/Mac) source .venv/bin/activate # Install dependencies pip install -r requirements.txt ``` ### 3. Test Installation ```bash python test_basic.py ``` ## MCP Client Setup ### Claude Desktop 1. Open Claude Desktop 2. Go to Settings → MCP Servers 3. Add new server: - Name: `msi-metadata` - Command: `C:\path\to\MSI-MCP-Server\.venv\Scripts\python.exe` - Args: `C:\path\to\MSI-MCP-Server\mcp_msi_server.py` ### Cursor 1. Open Cursor Settings 2. Go to MCP Servers 3. Add the same configuration as Claude Desktop ## Troubleshooting ### PowerShell Execution Policy If you get PowerShell execution errors: ```powershell Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser ``` ### Python Path Issues Make sure you're using the virtual environment Python: ```bash # Check Python path where python # Should show: C:\path\to\MSI-MCP-Server\.venv\Scripts\python.exe ``` ### MSI File Access Ensure the MSI file path is accessible and the file exists: ```python import os msi_path = r"C:\path\to\your\installer.msi" print(f"File exists: {os.path.exists(msi_path)}") ```

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/henry1042/MSI-MCP-Server'

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