modelscope·@sandraschi/windows-operations-mcp
暂无描述。
A comprehensive Windows system operations MCP server implementing the FastMCP 2.12.3 protocol with full MCPB (MCP Bundle) packaging support.
This repository has been fully migrated from DXT to MCPB (MCP Bundle) standards as of October 2025. All tooling, configuration, and packaging now follows the latest MCPB specifications with FastMCP 2.12.3 compatibility.
| Component | Old (DXT) | New (MCPB) | Status |
|---|---|---|---|
| CLI Tool | dxt commands | mcpb commands | Migrated |
| Config File | dxt.json | mcpb.json | Migrated |
| Manifest | dxt_manifest.json | mcpb/manifest.json | Migrated |
| Package Format | .dxt packages | .mcpb packages | Migrated |
| Documentation | DXT guides | MCPB guides | Migrated |
| Build Scripts | Manual build | PowerShell automation | Migrated |
| CI/CD | None | GitHub Actions | Added |
.mcpb file to Claude Desktop for automatic installation# Clone the repository
git clone https://github.com/sandraschi/windows-operations-mcp.git
cd windows-operations-mcp
# Install Python dependencies
pip install -r requirements.txt
# Install as editable package
pip install -e .
# Configure for Claude Desktop
# Add to claude_desktop_config.json:
{
"mcpServers": {
"windows-operations": {
"command": "python",
"args": ["-m", "windows_operations_mcp"],
"cwd": "src"
}
}
}
# Install MCPB CLI (official toolchain)
npm install -g @anthropic-ai/mcpb
# Install Python dependencies (EXACT VERSIONS)
pip install "fastmcp>=2.12.0,<3.0.0"
pip install -r requirements.txt
windows-operations-mcp/
mcpb/ # MCPB configuration and manifest
manifest.json # AI-generated runtime configuration
assets/ # Icons, screenshots
src/ # Python source code
windows_operations_mcp/ # Main Python package
__init__.py
server.py # Main server entry point
tools/ # Tool modules
scripts/ # Build and utility scripts
build-mcp-package.ps1 # MCPB package builder
docs/ # Documentation
requirements.txt # Python dependencies
README.md # This file
# Show help and available options
.\scripts\build-mcp-package.ps1 -Help
# Build and sign the package (default behavior)
.\scripts\build-mcp-package.ps1
# Build without signing (for development/testing)
.\scripts\build-mcp-package.ps1 -NoSign
# Specify custom output directory
.\scripts\build-mcp-package.ps1 -OutputDir "C:\builds"
# 1. AI-generate manifest.json (place in mcpb/manifest.json)
# ENSURE: fastmcp>=2.12.0 in requirements.txt
# ENSURE: cwd: "src" and PYTHONPATH: "src" in mcp_config
# 2. Validate manifest
cd mcpb
mcpb validate manifest.json
# 3. Build MCPB package
mcpb pack . ../dist/package.mcpb
# 4. Te…
一座通过串行通信将物理硬件设备与人工智能大语言模型连接起来的桥梁,允许用户使用自然语言命令控制硬件。
用于运行代码片段并显示结果的MCP服务器。
一个通过ADB实现对Android设备程序化控制的服务器,提供截图捕获、UI布局分析和包管理等功能,这些功能可以被像Claude Desktop这样的MCP客户端使用。
Claude Code作为模型上下文协议(MCP)服务器的一种实现,通过标准的MCP接口启用Claude的软件工程能力(代码生成、编辑、评审和文件操作)。
用于Cursor IDE的模型上下文协议(MCP)服务器,可简化其他MCP服务器的安装和配置。
一个MCP服务器,允许通过自然语言管理Docker容器,使用户能够在不自行运行命令的情况下组合、检查和调试容器。