Laptop Hardware MCP Server
Provides GitHub Copilot with access to real-time hardware and system telemetry from a Windows laptop, including CPU, RAM, disk, battery, and network statistics.
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., "@Laptop Hardware MCP Servershow me 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.
Laptop Hardware MCP Server (Windows)
This project creates a local MCP server that gives GitHub Copilot access to hardware/system telemetry from your laptop (CPU, RAM, disk, battery, network, uptime).
What this server provides
The MCP server in server.py exposes these tools:
get_live_system_statsget_cpu_infoget_memory_infoget_disk_infoget_battery_infoget_network_ioget_system_overview
VS Code MCP config is in .vscode/mcp.json.
Related MCP server: MCP System Monitor Server
Why Python 3.10+ matters
The modern mcp Python package requires a newer Python runtime than 3.8.
If you get an error like:
No matching distribution found for mcp
it usually means your active interpreter is too old.
Check which Python versions are installed
In PowerShell or CMD
py -0pYou should see at least one version that is 3.10+ (for example 3.10, 3.11, 3.12, 3.13).
If you do NOT have Python 3.10+
Install Python from python.org (Windows installer).
During install, enable:
Add Python to PATH
Install launcher for all users (recommended)
Re-open terminal and run:
py -0pCreate a virtual environment using Python 3.10+
Use one of these commands (replace version if needed).
PowerShell / CMD
py -3.13 -m venv .venvGit Bash
py -3.13 -m venv .venvIf .venv already exists and you want a clean reset:
py -3.13 -m venv .venv --clearActivate the environment
PowerShell
.\.venv\Scripts\Activate.ps1If script execution is blocked:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
.\.venv\Scripts\Activate.ps1CMD
.venv\Scripts\activate.batGit Bash
source .venv/Scripts/activateImportant: in Bash, use / slashes, not \.
Install dependencies
From project root:
python -m pip install --upgrade pip
python -m pip install -r requirements.txtQuick verification
python -c "import mcp, psutil; print('deps_ok')"Expected output:
deps_ok
Run the server manually (optional test)
python server.pyNote: this is a stdio MCP server. If you stop it with Ctrl+C, you may see cancellation traces; that is normal for manual termination.
Use it in VS Code Copilot Chat
Keep this file present: .vscode/mcp.json
Reload VS Code:
Command Palette ->
Developer: Reload Window
Open Copilot Chat and ask:
Use laptop-hardware MCP server and call get_system_overviewUse laptop-hardware MCP server and call get_memory_infoUse laptop-hardware MCP server and call get_disk_info with path C:\\
Troubleshooting
Error: No matching distribution found for mcp
Cause: old Python interpreter.
Fix:
py -0p
py -3.13 -m venv .venv --clearThen reactivate and reinstall dependencies.
Error: -r option requires 1 argument
Cause: command ended at pip install -r without a filename.
Fix:
python -m pip install -r requirements.txtGit Bash activation command fails
Cause: using Windows backslashes.
Fix:
source .venv/Scripts/activateCopilot does not see MCP server
Confirm .vscode/mcp.json exists.
Confirm dependencies are installed in
.venv.Reload VS Code window.
Project files
server.py: MCP tools implementation
requirements.txt: Python dependencies
.vscode/mcp.json: VS Code MCP server registration
README.md: setup and usage guide
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceA comprehensive Model Context Protocol server that enables AI assistants to interact with and manage Windows systems, providing capabilities for file system operations, process management, system information retrieval, registry operations, service management, network diagnostics, and performance monitoring.Last updated7395Apache 2.0
- Alicense-qualityDmaintenanceEnables real-time monitoring of system resources including CPU, GPU (NVIDIA, Apple Silicon, AMD/Intel), memory, disk, network, and processes across Windows, macOS, and Linux platforms through natural language queries.Last updated3MIT
- FlicenseBqualityDmaintenanceA lightweight MCP server that provides real-time hardware statistics including CPU, memory, disk, and NVIDIA GPU usage. It enables users to monitor system performance and retrieve comprehensive host machine specifications through a standardized interface.Last updated1
- Flicense-qualityAmaintenanceA real-time system diagnostics MCP server that gives AI agents live access to CPU, RAM, disk, network, processes, and hardware health metrics, with zero cloud dependency.Last updated7
Related MCP Connectors
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Shreshtthh/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server