openai-mcp-server

voronkovm/openai-mcp-server

3.1

If you are the rightful owner of openai-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Model Context Protocol (MCP) server is designed to facilitate communication between language models and various applications, providing a structured protocol for interaction.

Installation:

  1. Download and install:
cd /Users/user/Documents/Cline/MCP/
git clone github.com/voronkovm/openai-mcp-server.git
npm install && npm run clean-build
  1. add to mcp_settings.json
{
  "mcpServers": {
    "github.com/voronkovm/openai-mcp-server": {
      "autoApprove": [],
      "timeout": 60,
      "command": "node",
      "args": [
        "/Users/user/Documents/Cline/MCP/openai-mcp-server/build/index.js"
      ],
      "env": {
        "OPENAI_MCP_API_KEY": "sk-proj-....",
        "OPENAI_MCP_MODEL": "gpt-4o"
      },
      "transportType": "stdio"
    }
  }
}