Loading...
npx -y @smithery/cli install @billster45/mcp-chatgpt-responses --client claude{
"mcpServers": {
"chatgpt": {
"command": "uv",
"args": [
"--directory",
"\\path\\to\\mcp-chatgpt-responses",
"run",
"chatgpt_server.py"
],
"env": {
"OPENAI_API_KEY": "your-api-key-here",
"DEFAULT_MODEL": "gpt-4o",
"DEFAULT_TEMPERATURE": "0.7",
"MAX_TOKENS": "1000"
}
}
}
}ask_chatgpt(prompt, model, temperature, max_output_tokens, response_id)Sends a prompt to ChatGPT and returns the response.
Allows arbitrary prompt execution, which could lead to unintended actions or information disclosure.
ask_chatgpt_with_web_search(prompt, model, temperature, max_output_tokens, response_id)Sends a prompt to ChatGPT with web search enabled and returns the response.
Combines arbitrary prompt execution with external web access, increasing the risk of accessing malicious content.
This MCP server is relatively safe for general use, but the risk of compromised API keys and the potential for misuse through the `ask_chatgpt_with_web_search` tool should be considered. It is safe when used with appropriate rate limiting and monitoring of API usage. It is risky if the OpenAI API key is exposed or if the web search tool is used without proper safeguards.