
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Enhanced MCP server for ChatGPT with dynamic button detection and improved response handling
An enhanced Model Context Protocol (MCP) server that enables AI assistants to interact with the ChatGPT desktop app on macOS.
Based on the original chatgpt-mcp by @xncbf
Note: This server only supports English text input. Non-English characters may not work properly.
Simply run:
claude mcp add chatgpt-mcp-plus uvx chatgpt-mcp-plus
That's it! You can start using ChatGPT commands in Claude Code.
# Install with uv
uv add chatgpt-mcp-plus
# Clone the repository
git clone https://github.com/yowmamasita/chatgpt-mcp
cd chatgpt-mcp
# Install dependencies with uv
uv sync
If installed from PyPI, add to your MCP client configuration:
{
"mcpServers": {
"chatgpt-plus": {
"command": "uvx",
"args": ["chatgpt-mcp-plus"]
}
}
}
If manually installed, add to your MCP client configuration:
{
"mcpServers": {
"chatgpt-plus": {
"command": "uv",
"args": ["run", "chatgpt-mcp-plus"],
"cwd": "/path/to/chatgpt-mcp"
}
}
}
ask_chatgpt: Send a prompt to ChatGPT and get the complete response
Example: "Ask ChatGPT to explain quantum computing"
new_chat: Start a fresh conversation in ChatGPT
Example: "Start a new chat in ChatGPT"
The AI assistant will automatically use the appropriate MCP tools to interact with ChatGPT.
Send a prompt to ChatGPT and wait for the complete response.
Parameters:
prompt
(string): The text to send to ChatGPTReturns: ChatGPT's complete response text
Example:
response = await ask_chatgpt("What is the capital of France?")
# Returns: "The capital of France is Paris..."
Start a new conversation in ChatGPT, clearing any previous context.
Parameters: None
Returns: Success message
Example:
result = await new_chat()
# Returns: "Successfully started a new chat conversation"
This project is based on the original chatgpt-mcp by @xncbf. The Plus version adds enhanced features including dynamic button detection, improved response handling, and new chat functionality.
MIT
FAQs
Enhanced MCP server for ChatGPT with dynamic button detection and improved response handling
We found that chatgpt-mcp-plus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.