MCP ChatGPT Full PC Dev
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| psD | Executa um comando PowerShell no PC. |
| start_psC | Inicia um comando PowerShell longo em segundo plano. |
| read_processC | Lê stdout/stderr de um processo iniciado por start_ps. |
| stop_processC | Encerra um processo iniciado por start_ps. |
| list_processesA | Lista processos criados por start_ps nesta sessão MCP. |
| list_directoryC | Lista arquivos e pastas de um caminho. |
| get_file_infoC | Mostra metadados básicos de arquivo ou pasta. |
| create_directoryC | Cria uma pasta recursivamente. |
| read_fileD | Lê arquivo de texto. |
| write_fileB | Cria ou sobrescreve arquivo de texto. |
| append_fileC | Adiciona texto ao final de um arquivo. |
| delete_pathC | Remove arquivo ou pasta. Recusa raiz de unidade. |
| move_pathD | Move ou renomeia arquivo/pasta. |
| search_namesC | Busca arquivos e pastas por nome. |
| screenshot_urlB | Abre uma URL em Edge headless, com fallback Chromium, e retorna screenshot. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Most tools have distinct purposes, but ps and start_ps could cause confusion as both execute PowerShell commands. Additionally, append_file and write_file are clearly different (append vs overwrite). Overall, only minor overlap exists.
The majority of tools follow a consistent verb_noun pattern (e.g., create_directory, delete_path). Exceptions are ps (abbreviated) and screenshot_url (uppercase URL), but these are minor deviations from an otherwise consistent naming scheme.
15 tools is appropriate for a PC development server covering file operations, process management, and screenshots. It is slightly above the typical 3-15 range but still well-scoped and not overwhelming.
The tool set covers basic file CRUD (create, read, write, append, delete, move, list) and process lifecycle (start, stop, read output, list). However, notable gaps include a missing copy tool and lack of partial file update functionality, limiting completeness for development tasks.