Integrations
Leverages OpenAI's Agents SDK to expose individual specialized agents (Web Search, File Search, Computer Action) and a multi-agent orchestrator through the MCP protocol.
OpenAI Agents MCP Server
A Model Context Protocol (MCP) server that exposes OpenAI agents through the MCP protocol.
Features
This server exposes both individual agents and a multi-agent orchestrator using the OpenAI Agents SDK:
Individual Specialized Agents
- Web Search Agent: A specialized agent for searching the web for real-time information
- File Search Agent: A specialized agent for searching and analyzing files in OpenAI's vector store
- Computer Action Agent: A specialized agent for performing actions on your computer safely
Multi-Agent Orchestrator
- Orchestrator Agent: A powerful agent that can coordinate between the specialized agents, choosing the right one(s) for each task
Each agent is accessed through the MCP protocol, making them available to any MCP client, including the Claude desktop app.
Installation
Prerequisites
- Python 3.11 or higher
- uv package manager (recommended)
- OpenAI API key
Installing via Smithery
To install openai-agents-mcp-server for Claude Desktop automatically via Smithery:
Claude Desktop
Implementation Details
Tool Requirements
- WebSearchTool: No required parameters, but can accept optional location context
- FileSearchTool: Requires vector_store_ids (IDs from your OpenAI vector stores)
- ComputerTool: Requires an AsyncComputer implementation (currently simulated)
Customization
You can customize this server by:
- Implementing a full AsyncComputer interface to enable real computer interactions
- Adding additional specialized agents for other OpenAI tools
- Enhancing the orchestrator agent to handle more complex workflows
Configuration
You can configure the server using environment variables:
OPENAI_API_KEY
: Your OpenAI API key (required)MCP_TRANSPORT
: Transport protocol to use (default: "stdio", can be "sse")
Development
Setup development environment
Testing with MCP Inspector
You can test the server using the MCP Inspector:
Then open a web browser and navigate to http://localhost:5173.
License
MIT
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
A Model Context Protocol server that enables Claude users to access specialized OpenAI agents (web search, file search, computer actions) and a multi-agent orchestrator through the MCP protocol.
Related Resources
Related MCP Servers
- -securityAlicense-qualityA Model Context Protocol (MCP) server that lets you seamlessly use OpenAI's models right from Claude.Last updated -12428JavaScriptMIT License
- -securityAlicense-qualityA simple MCP server for interacting with OpenAI assistants. This server allows other tools (like Claude Desktop) to create and interact with OpenAI assistants through the Model Context Protocol.Last updated -26PythonMIT License
Open-Ledger-MCP-Serverofficial
-securityAlicense-qualityA Model Context Protocol (MCP) server implementation for the OpenLedger API. This server provides structured context to AI models according to the MCP specification.Last updated -8TypeScriptApache 2.0- -securityFlicense-qualityA Model Context Protocol server implementation that enables connection between OpenAI APIs and MCP clients for coding assistance with features like CLI interaction, web API integration, and tool-based architecture.Last updated -9Python