O3 Search MCP Server

MCP server that enables AI agents to perform intelligent web searches using OpenAI's o3 model with natural language queries

Local serverstdio

What is the O3 Search MCP MCP server?

If you want an AI assistant working directly with O3 Search MCP, the o3 search mcp mcp server is the bridge. MCP server that enables AI agents to perform intelligent web searches using OpenAI's o3 model with natural language queries.

What O3 Search MCP does

MCP server that enables the use of OpenAI's high-end models and their powerful web search capabilities. By registering it with any AI coding agent, the agent can autonomously consult with OpenAI models to solve complex problems.

Tools it exposes

Once connected, the assistant can call these 6 tools directly:

  • OPENAI_API_KEY — Required
  • OPENAI_MODEL — Optional
  • SEARCH_CONTEXT_SIZE — Optional
  • REASONING_EFFORT — Optional
  • OPENAI_API_TIMEOUT — Optional
  • OPENAI_MAX_RETRIES — Optional

Installing the o3 search mcp mcp server

The server is distributed via npm as o3-search-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 6 environment variables: OPENAI_API_KEY, OPENAI_MODEL, SEARCH_CONTEXT_SIZE, REASONING_EFFORT, OPENAI_API_TIMEOUT, OPENAI_MAX_RETRIES. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

AI-service servers chain other models into your assistant, turning a single chat into a small production pipeline. O3 Search MCP sits in that group, and the shape of its toolset — OPENAI_API_KEY, OPENAI_MODEL, SEARCH_CONTEXT_SIZE among others — tells you what it is really for. Worth comparing against the other ai services servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by yoshiko-pg.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the o3 search mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
OPENAI_API_KEYRequired
OPENAI_MODELOptional
SEARCH_CONTEXT_SIZEOptional
REASONING_EFFORTOptional
OPENAI_API_TIMEOUTOptional
OPENAI_MAX_RETRIESOptional

How to install the O3 Search MCP MCP server

json:

```jsonc
{
  "mcpServers": {
    "o3-search": {
      "command": "npx",
      "args": ["o3-search-mcp"],
      "env": {
        "OPENAI_API_KEY": "your-api-key",
        // Optional: o3, o4-mini, gpt-5 (default: o3)
        "OPENAI_MODEL": "o3",
        // Optional: low, medium, high (default: medium)
        "SEARCH_CONTEXT_SIZE": "medium",
        "REASONING_EFFORT": "medium",
        // Optional: API timeout in milliseconds (default: 300000)
        "OPENAI_API_TIMEOUT": "300000",
        // Optional: Maximum number of retries (default: 3)
        "OPENAI_MAX_RETRIES": "3"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
OPENAI_MODELConfiguration value read at startup.Optional
SEARCH_CONTEXT_SIZEConfiguration value read at startup.Optional
REASONING_EFFORTConfiguration value read at startup.Optional
OPENAI_API_TIMEOUTConfiguration value read at startup.Optional
OPENAI_MAX_RETRIESConfiguration value read at startup.Optional

Example prompts to try

  • Use O3 Search MCP to OPENAI API KEY.
  • Use O3 Search MCP to OPENAI MODEL.
  • Use O3 Search MCP to SEARCH CONTEXT SIZE.

Frequently asked questions

It connects O3 Search MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (OPENAI_API_KEY, OPENAI_MODEL, SEARCH_CONTEXT_SIZE, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with O3 Search MCP directly.