Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for opening files in Windows applications, including Microsoft Edge and the default app for file types.

README.md

MCP Server Windows Launcher

Ein Model Context Protocol (MCP) Server-Plugin zum Öffnen von Dateien in Windows-Anwendungen.

🎯 Funktionen

  • open_in_edge: Öffnet eine oder mehrere Dateien im Microsoft Edge Browser (optional in neuen Fenstern)
  • open_with_default_app: Öffnet eine Datei mit der Windows-Standard-Anwendung
  • Unterstützung für absolute und relative Pfade
  • Asynchrone Ausführung
  • Ausführliche Fehlerbehandlung und Statusmeldungen

📦 Installation

Python-Abhängigkeiten

Das Paket erfordert Python 3.9 oder höher und läuft nur unter Windows.

# Mit pip installieren (von PyPI, sobald veröffentlicht)
pip install mcp-server-windows-launcher

# Oder direkt aus dem Repository (Entwicklungsversion)
pip install git+https://github.com/username/mcp-server-windows-launcher.git

Verwendung

Nach der Installation können Sie den Server auf zwei Arten starten:

  1. Direkt über die Kommandozeile:
  mcp-server-windows-launcher
  1. Als Python-Modul:
  python -m mcp_server_windows_launcher.server

Claude Desktop Konfiguration

  1. Öffnen Sie die Claude Desktop Konfigurationsdatei:
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  1. Fügen Sie den Windows-Launcher Server hinzu:
{
  "mcpServers": {
    "windows-launcher": {
      "command": "mcp-server-windows-launcher"
    }
  }
}

Wichtig: Wenn Sie bereits andere MCP-Server konfiguriert haben, fügen Sie den neuen Server einfach zur Liste hinzu:

{
  "mcpServers": {
    "image-selector": { ... },
    "tesseract": { ... },
    "filesystem": { ... },
    "windows-launcher": {
      "command": "python",
      "args": ["-m", "mcp_server_windows_launcher.server"]
    }
  }
}

Claude Desktop neu starten

Nach der Konfiguration müssen Sie Claude Desktop komplett schließen und neu starten.

🚀 Verwendung

1. In Claude Desktop

Nach der Installation können Sie Claude bitten:

  • "Öffne die Datei XYZ im Edge Browser"
  • "Starte Edge mit diesen beiden HTML-Dateien"
  • "Öffne die PDF mit der Standard-App"

2. Als Python-Paket

from mcp_server_windows_launcher.server import open_in_edge, open_with_default_app

# Dateien in Edge öffnen
results = await open_in_edge(
    ["datei1.html", "datei2.pdf"],
    new_window=True  # Optional: In neuen Fenstern öffnen
)

# Datei mit Standard-App öffnen
result = await open_with_default_app("dokument.pdf")

👩‍💻 Entwicklung

Entwicklungsumgebung einrichten

  1. Repository klonen:
git clone https://github.com/username/mcp-server-windows-launcher.git
cd mcp-server-windows-launcher
  1. Python-Umgebung einrichten (Python 3.9+):
python -m pip install --upgrade pip
pip install -e .
  1. Entwicklungsabhängigkeiten installieren:
pip install pytest pytest-asyncio black flake8

Tests

Vor dem Ausführen der Tests muss das Paket in editierbarem Modus installiert sein:

# Paket installieren (nur einmal notwendig)
python -m pip install -e .

# Alternativ: PYTHONPATH setzen (bei jedem neuen Terminal notwendig)
$env:PYTHONPATH='src'

Dann können die Tests ausgeführt werden:

# Alle Tests ausführen
pytest tests/

# Tests mit detaillierter Ausgabe
pytest -v tests/

# Tests mit Ausgabe der Testabdeckung
pytest --cov=src/mcp_server_windows_launcher tests/

Code-Qualität

# Code formatieren (Black)
black src/ tests/

# Linting (Flake8)
flake8 src/ tests/

Continuous Integration

Das Projekt verwendet GitHub Actions für:

  • Automatische Tests auf Windows
  • Tests mit Python 3.9 bis 3.13
  • Ausführung bei Push und Pull Requests
  • Code-Qualitätsprüfung

Die Konfiguration befindet sich in .github/workflows/python-tests.yml

📄 Lizenz

MIT Lizenz - siehe LICENSE Datei für Details.

📝 Verfügbare Tools

open_in_edge

{
  "file_paths": ["C:\\Pfad\\zur\\Datei.html"],
  "new_window": false
}

open_with_default_app

{
  "file_path": "C:\\Pfad\\zur\\Datei.pdf"
}

🐛 Fehlerbehebung

  • "Datei nicht gefunden": Prüfen Sie, ob der Pfad korrekt ist
  • Edge startet nicht: Stellen Sie sicher, dass MS Edge installiert ist
  • Server läuft nicht: Prüfen Sie, ob mcp installiert ist (pip install mcp)

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.