OpenAI intelligence →
Association is based on retained identity fields; it does not by itself prove first-party publication.
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
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 | mcp-chatgpt-file-store-f056e1d5 | Deployment | Local Only |
|---|---|---|---|
| Canonical package | — | Repository | tanongkiat/mcp-chatgpt-file-store |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 90% |
| Publication | Draft | Official distribution | Not verified |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| source_git | tanongkiat/mcp-chatgpt-file-store | b292b981a2a883d2f676a75f9b0d8d4c2ff44c8d | 1 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| source_gittanongkiat/mcp-chatgpt-file-store | b292b981a2a883d2f676a75f9b0d8d4c2ff44c8dCurrent | Aug 25, 2026 | 11 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 |
|---|---|---|---|
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#"
} | — | — |
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
No verified package installation command is available in the retained catalog evidence.
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.
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.