This is a Model Context Protocol (MCP) server that provides access to OpenAI's GPT-5 API, enabling advanced AI capabilities within Claude Code workflows.
POST requests to: https://gpt5.mcp.majewscy.tech/
curl -X POST https://gpt5.mcp.majewscy.tech/ \
-H 'Content-Type: application/json' \
-H 'X-API-Key: your-api-key-here' \
-d '{
"tool": "gpt5_generate",
"inputs": {
"prompt": "Explain quantum computing in simple terms",
"max_tokens": 200,
"temperature": 0.7
}
}'
curl -X POST https://gpt5.mcp.majewscy.tech/ \
-H 'Content-Type: application/json' \
-H 'X-API-Key: your-api-key-here' \
-d '{
"tool": "gpt5_messages",
"inputs": {
"messages": [
{"role": "system", "content": "You are a helpful assistant"},
{"role": "user", "content": "What is the meaning of life?"}
],
"max_tokens": 300
}
}'
All API requests must include an X-API-Key header with a valid API key.
GET /health - Returns server status (no authentication required)
Based on GPT5 MCP by AllAboutAI-YT