shuyu-labs/Windows-MCP.Net
A .NET-based Windows desktop automation MCP (Model Context Protocol) server that provides AI assistants with the ability to interact with the Windows desktop environment.
Overview
shuyu-labs/Windows-MCP.Net is a C# MCP server licensed under MIT. A .NET-based Windows desktop automation MCP (Model Context Protocol) server that provides AI assistants with the ability to interact with the Windows desktop environment. Topics: mcp, ocr, tool, windows.
Ranked #3025 out of 25632 indexed tools.
Ecosystem
C# MIT
mcpocrtoolwindows
Signal Breakdown
Stars 248
Freshness 3mo ago
Issue Health 67%
Contributors 3
Dependents 0
Forks 32
Description Detailed
License MIT
How to Improve
Freshness high impact
Dependents medium impact
Matched Queries
From the README
# Windows MCP.Net
[English](README.en.md) | **中文**
一个基于 .NET 的 Windows 桌面自动化 MCP (Model Context Protocol) 服务器,为 AI 助手提供与 Windows 桌面环境交互的能力。
## 📋 目录
- [功能特性](#-功能特性)
- [使用场景](#-使用场景)
- [演示截图](#-演示截图)
- [技术栈](#️-技术栈)
- [API文档](#-api-文档)
- [项目结构](#️-项目结构)
- [功能扩展建议](#-功能扩展建议)
- [配置](#-配置)
- [贡献指南](#-贡献指南)
- [更新日志](#-更新日志)
- [支持](#-支持)
## 🚀 快速开始
### 前置要求
- Windows 操作系统
- .NET 10.0 Runtime 或更高版本
**重要提示**: 本项目需要 .NET 10 才能运行,请先确保你的本地安装了 .NET 10。如果尚未安装,请访问 [.NET 10 下载页面](https://dotnet.microsoft.com/zh-cn/download/dotnet/10.0) 进行下载和安装。
### 1. MCP 客户端配置
在您的 MCP 客户端配置中添加以下配置:
#### 使用全局安装的工具(推荐)
```json
{
"mcpServers": {
"WindowsMCP.Net": {
"type": "stdio",
"command": "dnx",
"args": ["WindowsMCP.Net@", "--yes"],
"env": {}
}
}
}
```
#### 使用项目源码直接运行(开发模式)
**方式一:工作区配置**
在项目根目录创建 `.vscode/mcp.json` 文件:
```json
{
"mcpServers": {
"Windows-MCP.Net-Dev": {
"type": "stdio",
"command": "dotnet",
"args": ["run", "--project", "s Read full README on GitHub →
Are you the maintainer? Claim this listing