A TypeScript MCP (Model Context Protocol) server that provides access to OpenAI's Deep Research API.
- openai_deep_research_create: Create new research requests
- openai_deep_research_check_status: Check the status of research requests
- openai_deep_research_get_results: Retrieve completed research results with citations
npx github:fbettag/openai-deep-research-mcp
claude mcp add openai-deep-research -s user npx github:fbettag/openai-deep-research-mcp -e OPENAI_API_KEY=sk-your-openai-api-key-here
Replace sk-your-openai-api-key-here
with your actual OpenAI API key.
Add to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"openai-deep-research": {
"command": "npx",
"args": ["github:fbettag/openai-deep-research-mcp"],
"env": {
"OPENAI_API_KEY": "sk-your-openai-api-key-here"
}
}
}
}
openai_deep_research_create({
query: "Your research question",
system_message?: "Optional guidance",
model?: "o3-deep-research-2025-06-26",
include_code_interpreter?: false
})
openai_deep_research_check_status({
request_id: "req_123..."
})
openai_deep_research_get_results({
request_id: "req_123..."
})
o3-deep-research-2025-06-26
: Full research model (5-30 min)o4-mini-deep-research-2025-06-26
: Faster, lightweight model
- Node.js >= 18.0.0
- OpenAI API key with Deep Research access
npm install
npm run dev
MIT