MCP server intelligence profile

mcp-chatgpt-file-store MCP Server

Enables saving and managing files in a sandboxed local folder via MCP, with tools for listing, reading, writing, appending, searching, moving, and deleting files and directories

Local Onlytanongkiat
Awaiting current scanSource Git · b292b981a2a883d2f676a75f9b0d8d4c2ff44c8d

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

1Distribution channel
11Independently 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 slugmcp-chatgpt-file-store-f056e1d5DeploymentLocal Only
Canonical packageRepositorytanongkiat/mcp-chatgpt-file-store
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gittanongkiat/mcp-chatgpt-file-storeb292b981a2a883d2f676a75f9b0d8d4c2ff44c8d1Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gittanongkiat/mcp-chatgpt-file-storeb292b981a2a883d2f676a75f9b0d8d4c2ff44c8dCurrentAug 25, 202611 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-file-storeServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
append_fileAppends content to an existing file, or creates the file if it does not exist. Use this to keep growing a running log or notes file.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "File path to append to"
    },
    "content": {
      "type": "string",
      "description": "Content to append (add your own newline if needed)"
    }
  },
  "required": [
    "path",
    "content"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
create_directoryCreates a folder (and any missing parents) inside the file store.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Directory path to create"
    }
  },
  "required": [
    "path"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
delete_filePermanently deletes a file or folder (recursively) from the file store. Use with care.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Path to delete"
    }
  },
  "required": [
    "path"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_file_infoReturns metadata (size, modified time, permissions) for a path.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Path inside the file store"
    }
  },
  "required": [
    "path"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_knowledgeReads the documents in the file store and returns them as one body of knowledge. Returns Markdown, or PlantUML when the content describes a flow — existing @startuml blocks are passed through, and diagrams are derived from 'A -> B' lines or numbered steps. Use this to ground an answer on everything stored, instead of reading files one at a time.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Only include documents whose path or content contains this text"
    },
    "format": {
      "type": "string",
      "enum": [
        "auto",
        "markdown",
        "plantuml"
      ],
      "description": "auto (default): Markdown, plus PlantUML when a flow is present. markdown: content only. plantuml: diagrams only."
    },
    "max_bytes": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "description": "Byte budget across all documents (default 100000)"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_allowed_directoriesReturns the directories ChatGPT is allowed to read from and write to. Call this first.
Input schema
{
  "type": "object",
  "properties": {}
}
list_directoryLists files and folders inside a directory within the allowed store.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Directory path inside the file store"
    }
  },
  "required": [
    "path"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
move_fileMoves or renames a file or folder inside the file store.
Input schema
{
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "description": "Existing path"
    },
    "destination": {
      "type": "string",
      "description": "New path"
    }
  },
  "required": [
    "source",
    "destination"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
read_fileReads the full contents of a text file inside the allowed file store.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "File path inside the file store"
    }
  },
  "required": [
    "path"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
search_filesSearches the file store for files matching a pattern (supports * and ?).
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Directory to search inside"
    },
    "pattern": {
      "type": "string",
      "description": "Glob pattern, e.g. *.md or *notes*"
    },
    "recursive": {
      "type": "boolean",
      "description": "Search subdirectories (default true)"
    }
  },
  "required": [
    "path",
    "pattern"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
write_fileCreates or overwrites a file in the file store. Parent folders are created automatically. Use this to save notes, drafts, summaries, or generated documents.
Input schema
{
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Destination file path, e.g. notes/idea.md"
    },
    "content": {
      "type": "string",
      "description": "Full content to write to the file"
    }
  },
  "required": [
    "path",
    "content"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

mcp-chatgpt-file-store MCP Server questions

How do I install mcp-chatgpt-file-store MCP Server?

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

What tools does mcp-chatgpt-file-store MCP Server provide?

mcp-chatgpt-file-store MCP Server exposed 11 tools during independent protocol observation, including append_file, create_directory, delete_file, get_file_info, get_knowledge, list_allowed_directories, list_directory, move_file, and others.

Is mcp-chatgpt-file-store 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.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.