We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/romeo2badboy-rgb/Windows-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Configuration for desktop management."""
from typing import Set
# Browser process names
BROWSER_NAMES: Set[str] = {
'msedge.exe', 'chrome.exe', 'firefox.exe', 'brave.exe', 'opera.exe'
}
# Apps to avoid processing
AVOIDED_APPS: Set[str] = {
'AgentUI', 'SystemSettings', 'ShellExperienceHost'
}
# Apps to exclude from processing
EXCLUDED_APPS: Set[str] = {
'Progman', 'Shell_TrayWnd', 'Shell_SecondaryTrayWnd',
'Microsoft.UI.Content.PopupWindowSiteBridge',
'Windows.UI.Core.CoreWindow', 'IME', 'MSCTFIME UI'
}
# DPI awareness settings
PROCESS_PER_MONITOR_DPI_AWARE = 2