PC Manager
Allows listing and interacting with Bluetooth devices on the system.
Allows management of Docker containers, including listing and controlling containers.
Provides email access via IMAP/SMTP for reading, sending, and managing emails.
Provides email access via IMAP/SMTP for reading, sending, and managing emails (Naver Mail).
Provides tools to query NVIDIA GPU information, such as GPU stats.
Integrates with OpenAI's function calling to enable AI agents to interact with the PC.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PC Managershow my current cpu and memory usage"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PC Manager
AI-powered PC management system with 80+ MCP tools for Cursor, Claude, and other AI agents.
PC Manager bridges the gap between AI and your operating system. It provides a comprehensive REST API, a web dashboard, and an MCP (Model Context Protocol) server that gives AI agents full control over your Windows PC.
Features
System Monitoring
Real-time CPU, memory, disk, and network monitoring
Live charts with usage history
System information and uptime tracking
File Management
Browse, create, rename, move, copy, delete files and folders
Built-in file viewer and editor
Drive listing with usage info
Process & Service Control
List, filter, and kill processes
Start, stop, restart Windows services
Process memory and CPU tracking
Network
Interface listing with IP addresses
Active connection monitoring
Traffic statistics
Ping, DNS resolve, port scan, Wake-on-LAN
Shell
Execute PowerShell commands remotely via web UI or API
Command history with arrow key navigation
Power Management
Lock, sleep, restart, shutdown with confirmation
Power plan and battery status
Programs & Environment
List installed programs and startup items
View and edit environment variables
PATH analysis with existence checks
Task Scheduler
List and run scheduled tasks
Registry
Read and write Windows registry values
Security & Admin
API key authentication
Danger level system (LOW / MEDIUM / HIGH / CRITICAL)
Action logging and audit history
Admin Bridge for elevated privilege execution
Hardware & Sensors
GPU info (NVIDIA)
Disk health (SMART)
USB devices, Bluetooth, printers
Camera capture, microphone recording
Screen & GUI Control
Screenshot capture
Mouse click and move
Keyboard input
Window management (list, focus)
Clipboard read/write
Docker & Package Management
Docker container management
Winget package search and install
WiFi network listing and connection
Email Integration
IMAP/SMTP email access (Naver, Gmail, etc.)
Read, search, send, delete emails
Folder listing
AI Agent
Natural language to API translation
OpenAI Function Calling compatible schema
Chat interface in web dashboard
Related MCP server: Conduit
Architecture
+------------------+ +------------------+ +------------------+
| Web Dashboard | | AI Agents | | External Apps |
| (localhost:7777)| | (Cursor/Claude) | | (GPT/Gemini) |
+--------+---------+ +--------+---------+ +--------+---------+
| | |
| REST API (/api/*) | MCP Protocol |
+------------+------------+----------+-------------+
| |
+-------v-------+ +-------v-------+
| Flask App | | MCP Server |
| (app.py) | |(mcp_server.py)|
+-------+-------+ +-------+-------+
| |
+-------v-----------------------v-------+
| Core Modules |
| system | files | processes | network |
| shell | power | registry | docker |
| screen | senses | email | admin |
+---------------------------------------+
| Windows OS (PowerShell) |
+---------------------------------------+Quick Start
Prerequisites
Windows 10/11
Python 3.11+
pip
Installation
# Clone the repository
git clone https://github.com/yourusername/pc-manager.git
cd pc-manager
# Install dependencies
pip install -r requirements.txt
# Run the web dashboard
python app.pyOpen http://localhost:7777 in your browser.
MCP Server Setup (Cursor / Claude Desktop)
Add to your MCP configuration:
{
"mcpServers": {
"pc-manager": {
"command": "python",
"args": ["path/to/pc-manager/mcp_server.py"]
}
}
}Restart Cursor or Claude Desktop
You now have 80+ tools available to your AI agent
Email Setup (Optional)
Copy the example config:
cp mail_config.example.json mail_config.jsonEdit
mail_config.jsonwith your email credentials:For Naver Mail: Enable IMAP in settings, generate an app password
For Gmail: Enable IMAP, use app-specific password
Admin Bridge Setup (Optional)
For operations requiring elevated privileges:
powershell -ExecutionPolicy Bypass -File admin_bridge/setup_admin_bridge.ps1API Documentation
Once the server is running, visit:
Swagger UI:
http://localhost:7777/api/docsOpenAI Schema:
http://localhost:7777/api/agent/openai-schema
API Endpoints Overview
Category | Endpoint | Description |
System |
| System info, stats, uptime |
Files |
| File operations |
Processes |
| Process management |
Services |
| Service control |
Network |
| Network monitoring |
Disk |
| Disk analysis |
Shell |
| Command execution |
Power |
| Power management |
Programs |
| Installed programs |
Environment |
| Environment variables |
Scheduler |
| Task scheduler |
Registry |
| Registry operations |
Docker |
| Container management |
Screen |
| Screenshot, GUI control |
Hardware |
| GPU, USB, Bluetooth |
Admin |
| Elevated execution |
MCP Tools (80+)
When connected via MCP, AI agents can use tools including:
Tool | Description |
| Get OS, CPU, memory details |
| Real-time CPU/memory/disk usage |
| Browse directory contents |
| Read and write files |
| Search by filename |
| Process management |
| Service management |
| Run PowerShell commands |
| Capture screen |
| GUI automation |
| Email operations |
| Docker management |
| Network diagnostics |
| Lock, sleep, restart, shutdown |
... and 60+ more |
Project Structure
pc-manager/
├── app.py # Flask entry point
├── config.py # Configuration
├── mcp_server.py # MCP server (80+ tools)
├── requirements.txt # Python dependencies
├── api/ # REST API modules
│ ├── system.py # System info & stats
│ ├── files.py # File management
│ ├── processes.py # Process management
│ ├── services.py # Service control
│ ├── network.py # Network monitoring
│ ├── disk.py # Disk analysis
│ ├── shell.py # Shell execution
│ ├── power.py # Power management
│ ├── agent.py # AI agent bridge
│ └── ... # 15+ more modules
├── core/ # Core utilities
│ ├── security.py # Authentication
│ ├── history.py # Action logging
│ └── admin_bridge.py # Elevated execution
├── admin_bridge/ # Admin elevation scripts
├── static/ # Frontend assets
│ ├── css/style.css
│ └── js/app.js
├── templates/
│ └── index.html # Web dashboard
└── .cursor/
└── mcp.json # MCP configurationSecurity Notice
The API runs on
localhostonly by defaultAll operations are authenticated via API key
Dangerous operations (kill process, shutdown, delete) require confirmation
Action history is logged for auditing
Do not expose this server to the public internet without additional security measures
Tech Stack
Backend: Python, Flask, Flask-RESTX, psutil
Frontend: Vanilla JS, Chart.js, Lucide Icons, Inter Font
AI Integration: MCP (Model Context Protocol), OpenAI Function Calling
System: PowerShell, Windows API, pyautogui
License
MIT License - see LICENSE for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/LUMIARCH9/pc-manager-'
If you have feedback or need assistance with the MCP directory API, please join our Discord server