OpenAI intelligence →
Association is based on retained identity fields; it does not by itself prove first-party publication.
Enables ChatGPT to perform filesystem operations, execute PowerShell commands, and manage n8n workflows on a Windows machine
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
No verified installation or connection method is available in the retained evidence yet.
| Canonical slug | chatgpt-mcp-server-af9df6a9 | Deployment | Local Only |
|---|---|---|---|
| Canonical package | — | Repository | bermingham85/chatgpt-mcp-server |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 35% |
| Publication | Draft | Official distribution | Not verified |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| source_git | bermingham85/chatgpt-mcp-server | 913c6ebb7202fa4d1dfa7265a8b0a6b648f9fa9b | 1 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| source_gitbermingham85/chatgpt-mcp-server | 913c6ebb7202fa4d1dfa7265a8b0a6b648f9fa9bCurrent | Aug 25, 2026 | 15 toolsSucceeded · 0 resources · 0 prompts | Evidence restricted |
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
No public current-version evidence is available yet.
| Tool | Category | Annotations | Risk |
|---|---|---|---|
create_directoryCreate a new directory (and parent directories if needed)Input schema{
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Directory path to create"
}
},
"required": [
"path"
]
} | — | — | |
delete_fileDelete a file or directoryInput schema{
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Path to delete"
},
"recursive": {
"type": "boolean",
"description": "If true, delete directories recursively"
}
},
"required": [
"path"
]
} | — | — | |
execute_commandExecute a shell command (PowerShell on Windows)Input schema{
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "Command to execute"
},
"cwd": {
"type": "string",
"description": "Working directory for command execution"
}
},
"required": [
"command"
]
} | — | — | |
get_file_statsGet detailed information about a file or directoryInput schema{
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Path to get stats for"
}
},
"required": [
"path"
]
} | — | — | |
list_directoryList all files and directories in a given pathInput schema{
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Directory path to list"
}
},
"required": [
"path"
]
} | — | — | |
move_fileMove or rename a file or directoryInput schema{
"type": "object",
"properties": {
"source": {
"type": "string",
"description": "Source path"
},
"destination": {
"type": "string",
"description": "Destination path"
}
},
"required": [
"source",
"destination"
]
} | — | — | |
n8n_activate_workflowActivate a workflowInput schema{
"type": "object",
"properties": {
"workflowId": {
"type": "string",
"description": "Workflow ID"
},
"apiKey": {
"type": "string",
"description": "n8n API key (optional if configured)"
}
},
"required": [
"workflowId"
]
} | — | — | |
n8n_deactivate_workflowDeactivate a workflowInput schema{
"type": "object",
"properties": {
"workflowId": {
"type": "string",
"description": "Workflow ID"
},
"apiKey": {
"type": "string",
"description": "n8n API key (optional if configured)"
}
},
"required": [
"workflowId"
]
} | — | — | |
n8n_execute_workflowManually execute a workflowInput schema{
"type": "object",
"properties": {
"workflowId": {
"type": "string",
"description": "Workflow ID"
},
"data": {
"type": "object",
"description": "Input data for the workflow"
},
"apiKey": {
"type": "string",
"description": "n8n API key (optional if configured)"
}
},
"required": [
"workflowId"
]
} | — | — | |
n8n_get_workflowGet details of a specific workflowInput schema{
"type": "object",
"properties": {
"workflowId": {
"type": "string",
"description": "Workflow ID"
},
"apiKey": {
"type": "string",
"description": "n8n API key (optional if configured)"
}
},
"required": [
"workflowId"
]
} | — | — | |
n8n_list_executionsList workflow executionsInput schema{
"type": "object",
"properties": {
"workflowId": {
"type": "string",
"description": "Filter by workflow ID (optional)"
},
"apiKey": {
"type": "string",
"description": "n8n API key (optional if configured)"
}
}
} | — | — | |
n8n_list_workflowsList all workflows from the n8n instanceInput schema{
"type": "object",
"properties": {
"apiKey": {
"type": "string",
"description": "n8n API key (optional if configured)"
}
}
} | — | — | |
read_fileRead the complete contents of a file from the filesystemInput schema{
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Absolute or relative path to the file"
}
},
"required": [
"path"
]
} | — | — | |
search_filesSearch for files matching a glob patternInput schema{
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "Glob pattern (e.g., '**/*.js', 'src/**/*.ts')"
},
"cwd": {
"type": "string",
"description": "Working directory for the search"
}
},
"required": [
"pattern"
]
} | — | — | |
write_fileWrite content to a file, creating it if it doesn't exist or overwriting if it doesInput schema{
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Absolute or relative path to the file"
},
"content": {
"type": "string",
"description": "Content to write to the file"
}
},
"required": [
"path",
"content"
]
} | — | — |
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
No verified package installation command is available in the retained catalog evidence.
ChatGPT MCP Server exposed 15 tools during independent protocol observation, including create_directory, delete_file, execute_command, get_file_stats, list_directory, move_file, n8n_activate_workflow, n8n_deactivate_workflow, and others.
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.
Association is based on retained identity fields; it does not by itself prove first-party publication.
Curated product and capability guides containing this catalog record.