MCP server intelligence profile

OpenAI WebSearch MCP Server

Provides intelligent web search capabilities using OpenAI's Web Search API with reasoning models. Supports localized results, multiple model options, and automatic source citations for current information retrieval

Local Onlyluchiniatwork
Awaiting current scanNpm · 1.2.1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
2Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install openai-websearch-mcp from npm

Version 1.2.1 declares 1 executable entrypoint.

npm install --save-exact openai-websearch-mcp@1.2.1
npx -y -p openai-websearch-mcp@1.2.1 openai-websearch-mcp
MCP client configuration example
{
  "mcpServers": {
    "openai-websearch-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "openai-websearch-mcp@1.2.1",
        "openai-websearch-mcp"
      ]
    }
  }
}

Identity

Canonical slugopenai-websearch-mcp-server-6ed5ec24DeploymentLocal Only
Canonical packagenpm:openai-websearch-mcpRepositoryluchiniatwork/openai-websearch-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmopenai-websearch-mcp1.2.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmopenai-websearch-mcp1.2.1CurrentSep 5, 20262 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
openai-websearch-mcp-serverServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 2

ToolCategoryAnnotationsRisk
web_search_chat_completionPerform a web search using OpenAI's Chat Completions API with search-enabled models
Input schema
{
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "enum": [
        "gpt-4o-search-preview",
        "gpt-4o-mini-search-preview"
      ],
      "description": "Model to use for web search"
    },
    "messages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "role": {
            "type": "string",
            "enum": [
              "user",
              "assistant",
              "system",
              "developer"
            ]
          },
          "content": {
            "type": "string"
          }
        },
        "required": [
          "role",
          "content"
        ],
        "additionalProperties": false
      },
      "description": "Conversation messages"
    },
    "web_search_options": {
      "type": "object",
      "properties": {
        "user_location": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "const": "approximate"
            },
            "approximate": {
              "type": "object",
              "properties": {
                "country": {
                  "type": "string",
                  "minLength": 2,
                  "maxLength": 2,
                  "description": "Two-letter ISO country code (e.g., 'US')"
                },
                "city": {
                  "type": "string",
                  "description": "City name (e.g., 'San Francisco')"
                },
                "region": {
                  "type": "string",
                  "description": "Region or state (e.g., 'California')"
                },
                "timezone": {
                  "type": "string",
                  "description": "IANA timezone (e.g., 'America/Los_Angeles')"
                }
              },
              "additionalProperties": false
            }
          },
          "required": [
            "type",
            "approximate"
          ],
          "additionalProperties": false,
          "description": "Optional user location to refine search results"
        },
        "search_context_size": {
          "type": "string",
          "enum": [
            "low",
            "medium",
            "high"
          ],
          "description": "Amount of context retrieved from the web"
        }
      },
      "additionalProperties": false,
      "description": "Configuration options for web search"
    }
  },
  "required": [
    "model",
    "messages"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
web_search_responsesPerform a web search using OpenAI's Responses API with web_search_preview tool
Input schema
{
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "enum": [
        "gpt-4o"
      ],
      "description": "Model to use for response generation"
    },
    "tools": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "web_search_preview",
              "web_search_preview_2025_03_11"
            ]
          },
          "user_location": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "const": "approximate"
              },
              "approximate": {
                "type": "object",
                "properties": {
                  "country": {
                    "type": "string",
                    "minLength": 2,
                    "maxLength": 2,
                    "description": "Two-letter ISO country code (e.g., 'US')"
                  },
                  "city": {
                    "type": "string",
                    "description": "City name (e.g., 'San Francisco')"
                  },
                  "region": {
                    "type": "string",
                    "description": "Region or state (e.g., 'California')"
                  },
                  "timezone": {
                    "type": "string",
                    "description": "IANA timezone (e.g., 'America/Los_Angeles')"
                  }
                },
                "additionalProperties": false
              }
            },
            "required": [
              "type",
              "approximate"
            ],
            "additionalProperties": false,
            "description": "Optional user location to refine search results"
          },
          "search_context_size": {
            "type": "string",
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "description": "Amount of context retrieved from the web"
          }
        },
        "required": [
          "type"
        ],
        "additionalProperties": false
      },
      "description": "Tools the model can use"
    },
    "input": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "role": {
                "type": "string",
                "enum": [
                  "user",
                  "assistant",
                  "system"
                ]
              },
              "content": {
                "type": "string"
              }
            },
            "required": [
              "role",
              "content"
            ],
            "additionalProperties": false
          }
        }
      ],
      "description": "Conversation messages (will be converted to input/instructions format)"
    }
  },
  "required": [
    "model",
    "tools",
    "input"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

OpenAI WebSearch MCP Server questions

How do I install OpenAI WebSearch MCP Server?

Install the selected package version with: npm install --save-exact openai-websearch-mcp@1.2.1

What tools does OpenAI WebSearch MCP Server provide?

OpenAI WebSearch MCP Server exposed 2 tools during independent protocol observation, including web_search_chat_completion, web_search_responses.

Is OpenAI WebSearch MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

OpenAI intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.