The o3-search MCP server provides AI-powered web search capabilities using OpenAI's o3 model.
- Natural Language Queries: Accepts text questions or search requests in English
- Advanced Search: Finds the latest information and helps troubleshoot errors
- Customizable Context: Allows adjusting search context size (
low
,medium
,high
) - Reasoning Effort Control: Enables setting reasoning effort level (
low
,medium
,high
) - API Integration: Compatible with OpenAI's API, with configurable timeout and retry settings
- Complex Problem Solving: Assists in consulting about complex problems
Provides web search capabilities using OpenAI's o3 model, enabling AI agents to perform text-based web searches with configurable context size and reasoning effort
o3-search-mcp
MCP server that enables the use of OpenAI's o3 model and its powerful web search capabilities. By registering it with any AI coding agent, the agent can autonomously consult with the o3 model to solve complex problems.
Use Cases
🐛 When you're stuck debugging
o3's web search can scan a wide range of sources, including GitHub issues and Stack Overflow, significantly increasing the chances of resolving niche problems. Example prompts:
📚 When you want to reference the latest library information
You can get answers from the powerful web search even when there's no well-organized documentation. Example prompts:
🧩 When tackling complex tasks
In addition to search, you can also use it as a sounding board for design. Example prompts:
Also, since it's provided as an MCP server, the AI agent may decide on its own to talk to o3 when it deems it necessary, without any instructions from you. This will dramatically expand the range of problems it can solve on its own!
Installation
npx (Recommended)
Claude Code:
json:
Local Setup
If you want to download the code and run it locally:
Claude Code:
json:
Environment Variables
Environment Variable | Options | Default | Description |
---|---|---|---|
OPENAI_API_KEY | Required | - | OpenAI API Key |
SEARCH_CONTEXT_SIZE | Optional | medium | Controls the search context sizeValues: low , medium , high |
REASONING_EFFORT | Optional | medium | Controls the reasoning effort levelValues: low , medium , high |
OPENAI_API_TIMEOUT | Optional | 60000 | API request timeout in millisecondsExample: 120000 for 2 minutes |
OPENAI_MAX_RETRIES | Optional | 3 | Maximum number of retries for failed requestsThe SDK automatically retries on rate limits (429), server errors (5xx), and connection errors |
Notes
To use the o3 model from the OpenAI API, you need to either raise your tier to 4 or verify your organization. If you register an API key that is not yet enabled for o3 with this MCP, calls will result in an error. Reference: https://help.openai.com/en/articles/10362446-api-access-to-o1-o3-and-o4-models
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
An MCP server that enables web search capabilities using OpenAI's o3 model, allowing AI assistants to perform text-based web searches and return AI-powered results.
Related MCP Servers
- AsecurityFlicenseAqualityAn MCP (Model Context Protocol) server that provides Google search capabilities and webpage content analysis tools. This server enables AI models to perform Google searches and analyze webpage content programmatically.Last updated -35283TypeScript
- -securityFlicense-qualityAn MCP server that integrates real-time web search capabilities into AI assistants using the Exa API, providing both basic and advanced search functionality with formatted markdown results.Last updated -141Python
- -securityFlicense-qualityAn MCP server that enables AI models to search the web using OpenAI's 4o-mini Search model, allowing access to up-to-date information for just a few cents per search.Last updated -82JavaScript
- AsecurityAlicenseAqualityAn MCP server that allows users to efficiently search and reference user-configured documents through document listing, grep searching, semantic searching with OpenAI Embeddings, and full document retrieval.Last updated -43PythonMIT License