Query OpenAI models directly from Claude using MCP protocol. Add to claudedesktopconfig.json: MIT License
Add this skill
npx mdskills install pierrebrunelle/mcp-server-openaiEnables querying OpenAI models from Claude but lacks tool descriptions and overscopes permissions
1# OpenAI MCP Server23Query OpenAI models directly from Claude using MCP protocol.4567## Setup89Add to `claude_desktop_config.json`:1011```json12{13 "mcpServers": {14 "openai-server": {15 "command": "python",16 "args": ["-m", "src.mcp_server_openai.server"],17 "env": {18 "PYTHONPATH": "C:/path/to/your/mcp-server-openai",19 "OPENAI_API_KEY": "your-key-here"20 }21 }22 }23}24```2526## Development27```bash28git clone https://github.com/pierrebrunelle/mcp-server-openai29cd mcp-server-openai30pip install -e .31```3233## Testing34```python35# Run tests from project root36pytest -v test_openai.py -s3738# Sample test output:39Testing OpenAI API call...40OpenAI Response: Hello! I'm doing well, thank you for asking...41PASSED42```4344## License45MIT License46
Full transparency — inspect the skill content before installing.