chatgpt-context-mcp
Imports private ChatGPT conversation context, fetching remote conversations via the ChatGPT web backend API and caching them locally for use in MCP clients.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@chatgpt-context-mcpimport conversation https://chatgpt.com/c/abc123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ChatGPT Context MCP
A local stdio MCP server for importing private ChatGPT conversation context into Codex, Claude Code, and other MCP clients.
Disclaimer
This is an unofficial project. It is not maintained, endorsed, or supported by OpenAI.
This tool uses private, non-public ChatGPT web backend APIs. The behavior was inferred from web traffic and may change, break, or return incomplete data at any time. This project is provided only for technical research, personal context migration, and local MCP experimentation.
No guarantees are made about correctness, reliability, stability, completeness, legality, compliance, or fitness for any purpose. You are responsible for your own use, including token handling, data privacy, local laws, organization policy, and relevant service terms. Bearer tokens are sensitive temporary credentials and should be handled like passwords. Use at your own risk.
Related MCP server: Ruminer Browser Agent
Features
Imports private ChatGPT conversation URLs into MCP clients.
Refreshes remote conversation content by default before returning context.
Caches JSON, Markdown, messages, and metadata locally.
Supports cache-only reads for previously imported conversations.
Provides MCP tools and cache-backed resources.
Documents setup for Codex and Claude Code.
Supported Scope
Supported:
https://chatgpt.com/c/{conversation_id}
https://chat.openai.com/c/{conversation_id}Not supported:
Shared links such as
https://chatgpt.com/share/{share_id}ChatGPT Projects
Bulk history export
Attachment, image, or Canvas downloads
Browser automation or cookie extraction
How It Works
import_chatgpt_url parses a private ChatGPT conversation URL, fetches the full remote conversation through ChatGPT's web backend API, compares a stable content hash with local metadata, updates the cache when content changed, and returns bounded Markdown/messages/JSON to the MCP client.
get_chatgpt_context reads local cache only. It does not check the remote conversation.
Install From Source
Requirements:
Node.js 20+
npm
git clone https://github.com/OWNER/chatgpt-context-mcp.git
cd chatgpt-context-mcp
npm install
npm run buildRun checks:
npm run checkToken Setup
Get a fresh ChatGPT web bearer token from your browser DevTools. Do not paste tokens into agent chat or commit them to config files.
You can provide credentials through the current process environment:
export CHATGPT_BEARER_TOKEN="<chatgpt-bearer-token>"
export CHATGPT_ACCOUNT_ID=""For desktop apps, use the wrapper script with a private fallback env file:
mkdir -p "$HOME/.config/chatgpt-context-mcp"
chmod 700 "$HOME/.config/chatgpt-context-mcp"
cat > "$HOME/.config/chatgpt-context-mcp/env" <<'EOF'
export CHATGPT_BEARER_TOKEN="<chatgpt-bearer-token>"
export CHATGPT_ACCOUNT_ID=""
EOF
chmod 600 "$HOME/.config/chatgpt-context-mcp/env"The wrapper uses this precedence:
Existing process environment variables.
Values from
$HOME/.config/chatgpt-context-mcp/env.
Set CHATGPT_CODEX_MCP_ENV_FILE to point at a different env file.
Codex Configuration
Built mode:
[mcp_servers.chatgpt_context]
command = "<repo-path>/scripts/start-mcp.sh"
args = []
env_vars = ["CHATGPT_BEARER_TOKEN", "CHATGPT_ACCOUNT_ID", "CHATGPT_CODEX_MCP_CACHE_DIR", "CHATGPT_CODEX_MCP_ENV_FILE"]
startup_timeout_sec = 10
tool_timeout_sec = 120
default_tools_approval_mode = "auto"Development mode:
[mcp_servers.chatgpt_context]
command = "npm"
args = ["run", "start:mcp", "--prefix", "<repo-path>"]
env_vars = ["CHATGPT_BEARER_TOKEN", "CHATGPT_ACCOUNT_ID", "CHATGPT_CODEX_MCP_CACHE_DIR"]
startup_timeout_sec = 10
tool_timeout_sec = 120
default_tools_approval_mode = "auto"Restart Codex or open a new session after changing MCP configuration.
Claude Code Configuration
Configure this as a stdio MCP server:
{
"mcpServers": {
"chatgpt_context": {
"command": "<repo-path>/scripts/start-mcp.sh",
"args": [],
"env": {
"CHATGPT_CODEX_MCP_ENV_FILE": "$HOME/.config/chatgpt-context-mcp/env"
}
}
}
}Client-specific UI and config locations may vary. The server itself is a standard stdio MCP server.
MCP Tools
import_chatgpt_url: Fetches a private ChatGPT conversation URL from the remote API by default, updates cache when content changed, and returns bounded context.get_chatgpt_context: Reads a cached conversation. Does not access the network.list_chatgpt_imports: Lists locally cached imports.verify_chatgpt_auth: Checks token presence, expiration, account id detection, and lightweight API access.
MCP Resources
Cache-backed resources:
chatgpt://conversation/{conversation_id}/metadata
chatgpt://conversation/{conversation_id}/markdown
chatgpt://conversation/{conversation_id}/messages
chatgpt://conversation/{conversation_id}/jsonResource reads are cache-only and do not refresh remote content.
Cache and Privacy
Imported conversations are cached as plaintext under:
$HOME/.cache/chatgpt-context-mcp/Override the cache location:
export CHATGPT_CODEX_MCP_CACHE_DIR="/path/to/cache"Cache files may contain private prompts, assistant replies, code, and other sensitive content. The server does not write bearer tokens to disk.
Troubleshooting
If verify_chatgpt_auth fails:
Confirm
CHATGPT_BEARER_TOKENis available to the MCP server.Refresh the bearer token if it expired.
For Team or Enterprise accounts, set
CHATGPT_ACCOUNT_IDif auto-detection fails.Restart the MCP client after changing config or environment variables.
If import_chatgpt_url returns UNSUPPORTED_URL, use a private /c/{conversation_id} URL rather than a /share/{share_id} URL.
If remote access fails but cache exists, the error includes cache_available: true. Use get_chatgpt_context only when stale cached context is acceptable.
Development
npm install
npm test
npm run typecheck
npm run build
npm run checkRun the server locally:
npm run start:mcpLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceThe self-hosted MCP bridge between Claude Chat and Claude Code.Last updated46AGPL 3.0
- Alicense-qualityDmaintenanceSyncs AI conversations from multiple platforms to local Markdown files for your second brain, and provides browser automation tools via MCP for agentic workflows.Last updatedAGPL 3.0
- AlicenseAqualityAmaintenanceLocal-first AI PKM memory server for coding conversations. Imports Claude Code, Cursor, Codex CLI, Trae, and GitHub Copilot chats into notes, semantic search, tag graphs, Markdown exports, and MCP memory tools.Last updated715851Apache 2.0
- Alicense-qualityBmaintenanceConvert any file or URL to clean AI-ready Markdown directly from Claude, Claude Code, Cursor, or any MCP-compatible AI agent.Last updated1MIT
Related MCP Connectors
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/protosskai/chatgpt-context-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server