├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── mcp_windows │ ├── __init__.py │ ├── appid.py │ ├── audio.py │ ├── clipboard.py │ ├── keyboard.py │ ├── main.py │ ├── media.py │ ├── monitors.py │ ├── notifications.py │ ├── screenshot.py │ ├── startmenu.py │ ├── theme.py │ └── window_management.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/mcp_windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/__init__.py -------------------------------------------------------------------------------- /src/mcp_windows/appid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/appid.py -------------------------------------------------------------------------------- /src/mcp_windows/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/audio.py -------------------------------------------------------------------------------- /src/mcp_windows/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/clipboard.py -------------------------------------------------------------------------------- /src/mcp_windows/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/keyboard.py -------------------------------------------------------------------------------- /src/mcp_windows/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/main.py -------------------------------------------------------------------------------- /src/mcp_windows/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/media.py -------------------------------------------------------------------------------- /src/mcp_windows/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/monitors.py -------------------------------------------------------------------------------- /src/mcp_windows/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/notifications.py -------------------------------------------------------------------------------- /src/mcp_windows/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/screenshot.py -------------------------------------------------------------------------------- /src/mcp_windows/startmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/startmenu.py -------------------------------------------------------------------------------- /src/mcp_windows/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/theme.py -------------------------------------------------------------------------------- /src/mcp_windows/window_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/src/mcp_windows/window_management.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretiveShell/mcp-windows/HEAD/uv.lock --------------------------------------------------------------------------------