- Home
- MCP servers
- OpenAI
OpenAI
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-pierrebrunelle_mcp-server-openai": {
"command": "python",
"args": [
"-m",
"src.mcp_server_openai.server"
],
"env": {
"PYTHONPATH": "C:/path/to/your/mcp-server-openai",
"OPENAI_API_KEY": "your-key-here"
}
}
}
}You can query OpenAI models directly from Claude using MCP protocol. This server acts as a bridge that lets Claude send requests to OpenAI models and receive responses seamlessly through MCP.
How to use
To use the OpenAI MCP Server, run it locally and connect an MCP client (such as Claude) to the MCP endpoint. You will send requests to OpenAI models through the MCP interface, enabling automated conversations and model interactions without leaving your Claude workflow.
How to install
Prerequisites you need before starting:
Install Python and pip on your system if they are not already installed.
Clone the MCP server repository and install it in editable mode so you can develop against it.