MCP server intelligence profile

ChatGPT MCP Server

Enables ChatGPT to perform filesystem operations, execute PowerShell commands, and manage n8n workflows on a Windows machine

Local Onlybermingham85
Awaiting current scanSource Git · 913c6ebb7202fa4d1dfa7265a8b0a6b648f9fa9b

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
15Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

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.

Identity

Canonical slugchatgpt-mcp-server-af9df6a9DeploymentLocal Only
Canonical packageRepositorybermingham85/chatgpt-mcp-server
First publishedLatest release
Last security verificationClassification confidence35%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitbermingham85/chatgpt-mcp-server913c6ebb7202fa4d1dfa7265a8b0a6b648f9fa9b1Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitbermingham85/chatgpt-mcp-server913c6ebb7202fa4d1dfa7265a8b0a6b648f9fa9bCurrentAug 25, 202615 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
chatgpt-mcp-serverServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 15

ToolCategoryAnnotationsRisk
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 directory
Input 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 directory
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Path to get stats for"
    }
  },
  "required": [
    "path"
  ]
}
list_directoryList all files and directories in a given path
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Directory path to list"
    }
  },
  "required": [
    "path"
  ]
}
move_fileMove or rename a file or directory
Input schema
{
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "description": "Source path"
    },
    "destination": {
      "type": "string",
      "description": "Destination path"
    }
  },
  "required": [
    "source",
    "destination"
  ]
}
n8n_activate_workflowActivate a workflow
Input 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 workflow
Input 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 workflow
Input 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 workflow
Input 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 executions
Input 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 instance
Input schema
{
  "type": "object",
  "properties": {
    "apiKey": {
      "type": "string",
      "description": "n8n API key (optional if configured)"
    }
  }
}
read_fileRead the complete contents of a file from the filesystem
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Absolute or relative path to the file"
    }
  },
  "required": [
    "path"
  ]
}
search_filesSearch for files matching a glob pattern
Input 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 does
Input 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"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

ChatGPT MCP Server questions

How do I install ChatGPT MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does ChatGPT MCP Server provide?

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.

Is ChatGPT MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

OpenAI intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Filesystem MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.