openai-mcp-server
0
The project is an open-source server for integrating with OpenAI's Model Context Protocol (MCP). It involves setup and configuration using npm and JSON for environment variables and commands.
Installation:
- Download and install:
cd /Users/user/Documents/Cline/MCP/
git clone github.com/voronkovm/openai-mcp-server.git
npm install && npm run clean-build
- 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"
}
}
}