Grant the AI octopus access to a portion of your desktop with a Model Context Protocol (MCP) server for the GNOME desktop.
To build and install the MCP server to your system:
cargo install --path .
The resulting binary will typically be under ~/.cargo/bin/gnome-mcp-server
.
To use this MCP server, you need to configure an MCP client. The configuration varies slightly from client to client, but this is the information that you will need:
- Transport:
stdio
- Command:
gnome-mcp-server
(assuming~/.cargo/bin
is in your PATH) - Args:
[]
(empty list)
The following is a list of general-purpose MCP clients known to work on Linux (in alphabetical order):
Name | Description | Open Source | Local LLM Support | Documentation |
---|---|---|---|---|
goose | AI agent by Block (creators of Square) | ✅ | ✅ | Docs |
LM Studio | Desktop app for running local LLMs | ❌ | ✅ | Docs |
Speed of Light | Native GNOME MCP client | ✅ | ✅ | Docs |
Know of other MCP clients that work on Linux? Please submit a PR to add them to this table.
Coding-specific agents like Claude Code, OpenAI Codex, Gemini CLI, VS Code Copilot, or Cursor also support MCP, but they typically rely on cloud models and have limited or no support for on-device LLMs.
For additional MCP clients, see this section in the official documentation.
By default, all tools and resources are enabled. Create a configuration file to customize behavior:
./gnome-mcp-config.json
(current directory)~/.config/gnome-mcp/config.json
(user config)/etc/gnome-mcp/config.json
(system config)
"calendar": {
"days_ahead": 30, // Days to look ahead (default: 30)
"days_behind": 0 // Days to look behind (default: 0)
}
"tasks": {
"include_completed": true, // Include completed tasks (default: true)
"include_cancelled": false, // Include cancelled tasks (default: false)
"due_within_days": 0 // Filter by due date, 0 = all (default: 0)
}
"contacts": {
"email_only": false // Include only contacts with emails (default: false)
}
- summary (string, required): Notification title
- body (string, required): Notification content
- app_name (string, required): Application name or executable
- path (string, required): File path or URL
- image_path (string, required): Full path to image file
- Supported formats: JPG, JPEG, PNG
- volume (number, optional): Volume level 0-100
- mute (boolean, optional): Mute/unmute
- relative (boolean, optional): Relative change if true
- direction (string, optional): "up" or "down" for default step
Config:
"audio": {
"volume_step": 10 // Default step size (default: 10)
}
- action (string, required): play, pause, play_pause, stop, next, previous
- player (string, optional): Specific player name (default: active player)
- setting (string, required): wifi, bluetooth, night_light, do_not_disturb, dark_style
- enabled (boolean, required): Enable/disable state
- interactive (boolean, optional): Show selection dialog
Config:
"screenshot": {
"interactive": false // Default interactive mode (default: false)
}
- action (string, required): list, focus, close, minimize, maximize, switch_workspace, move_to_workspace, get_geometry, set_geometry, set_position, set_size, snap
- window_id (string, optional): Window ID for window-specific actions
- workspace (integer, optional): Workspace number (0-indexed)
- x (integer, optional): X coordinate
- y (integer, optional): Y coordinate
- width (integer, optional): Width in pixels
- height (integer, optional): Height in pixels
- position (string, optional): "left" or "right" for snap action
Requirements: GNOME Shell unsafe mode: Alt+F2
→ lg
→ global.context.unsafe_mode = true
- action (string, required): store, retrieve, delete
- label (string, optional): Human-readable label for the secret (required for store action)
- secret (string, optional): The secret value to store (required for store action)
- attributes (string, optional): JSON object of key-value attributes for categorizing/searching secrets (e.g.,
{"application": "myapp", "username": "user"}
)
Examples:
// Store a secret
{"action": "store", "label": "GitHub Token", "secret": "ghp_xxx", "attributes": "{\"service\": \"github\", \"user\": \"myuser\"}"}
// Retrieve by service
{"action": "retrieve", "attributes": "{\"service\": \"github\"}"}
// Delete by user
{"action": "delete", "attributes": "{\"user\": \"myuser\"}"}
- Include config section to enable:
"calendar": {}
- Omit section to disable
- Empty objects use defaults
See gnome-mcp-config.example.json
for a complete example.
Co-authored by Claude