pypi mcp-gpu-serverstdioupdated 4mo ago
mcp-name: io.github.mesutoezdil/mcp-gpu-server
Was kannst du mit GPU Server machen?
mcp-name: io.github.mesutoezdil/mcp-gpu-server
mcp-gpu-server
An MCP server that exposes NVIDIA GPU metrics as tools. Once connected, any MCP-compatible client can query your GPU status in real time directly from a conversation.
What it does
Instead of running nvidia-smi manually, you ask your AI assistant and it calls these tools automatically:
gpu_info GPU name, driver version, CUDA version
gpu_utilization core utilization % and memory bandwidth %
gpu_vram total, used, free VRAM in MiB and usage %
gpu_temperature GPU core temperature in Celsius
gpu_stats everything above in one call
Example response from gpu_stats:
{
"count": 1,
"gpus": [{
"index": 0,
"name": "NVIDIA L40S",
"driver": "580.126.09",
"cuda": "13.0",
"temp_c": 29,
"gpu_pct": 0,
"mem_pct": 0,
"vram": {
"total_mib": 46068,
"used_mib": 610,
"free_mib": 45457,
"pct": 1.3
}
}]
}
How it works
Queries NVML (pynvml) directly when available. Falls back to nvidia-smi subprocess if NVML is not accessible. Returns clean JSON in both cases.
Install
pip install mcp-gpu-server
Connect to your MCP client
Add this to your MCP client config file:
{
"mcpServers": {
"gpu": {
"command": "mcp-gpu-server"
}
}
}
Run tests
python tests/test_gpu.py
Requirements
Python 3.10 or higher. NVIDIA GPU with drivers installed on the host machine.
Installation
GPU Server zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add mcp-gpu-server -- uvx mcp-gpu-servercodex mcp add mcp-gpu-server -- uvx mcp-gpu-serveramp mcp add mcp-gpu-server -- uvx mcp-gpu-server{
"mcpServers": {
"mcp-gpu-server": {
"command": "uvx",
"args": [
"mcp-gpu-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-gpu-server": {
"command": "uvx",
"args": [
"mcp-gpu-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-gpu-server","command":"uvx","args":["mcp-gpu-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-gpu-server": {
"command": "uvx",
"args": [
"mcp-gpu-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-gpu-server": {
"command": "uvx",
"args": [
"mcp-gpu-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-gpu-server": {
"command": "uvx",
"args": [
"mcp-gpu-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-gpu-server": {
"type": "local",
"command": "uvx",
"args": [
"mcp-gpu-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-gpu-server": {
"command": {
"path": "uvx",
"args": [
"mcp-gpu-server"
]
}
}
}
}Add to your Zed `settings.json`.
uvx mcp-gpu-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Unvollständig
- Dokumentation12/25
- Pflege19/25
- Vertrauen6/20
- Funktionsumfang0/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 121 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 0.1.3Aktuell | 3. Mai 2026 |
| 0.1.2 | 3. Mai 2026 |
| 0.1.1 | 3. Mai 2026 |