feat(openai): add OpenAI MCP server synced to current Docs spec#64
Draft
feat(openai): add OpenAI MCP server synced to current Docs spec#64
Conversation
New MCP server for OpenAI API via AceDataCloud, following the same patterns as the serp MCP server. Tools: - openai_chat_completion: chat completions (GPT-4o, o1, o3, o4-mini, etc.) - openai_embeddings: text embeddings - openai_image_generate: image generation (DALL-E 3, GPT-Image) - openai_responses: OpenAI responses API - openai_image_edit: image editing - openai_list_models: list all available models by category Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Germey <8678661+Germey@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Sync openai service with latest Docs changes
feat(openai): add OpenAI MCP server synced to current Docs spec
Apr 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The AceDataCloud Docs dropped
gpt-5.4from theopenaiOpenAPI spec (canary sync test). Noopenai/subdirectory existed in the monorepo, so this PR creates it from scratch, aligned to the current spec.New service:
openai/Follows the same architecture as all other services (
serp,shorturl, etc.).Tools
openai_chat_completionPOST /openai/chat/completionsopenai_embeddingsPOST /openai/embeddingsopenai_image_generatePOST /openai/images/generationsopenai_responsesPOST /openai/responsesopenai_image_editPOST /openai/images/editsopenai_list_modelsModel coverage (from spec)
gpt-5.5,gpt-5.5-pro,gpt-5.2,gpt-5.1,gpt-5,gpt-4o,gpt-4.1,o1–o4-minifamilies — nogpt-5.4text-embedding-3-small/large,text-embedding-ada-002dall-e-3,gpt-image-1/1.5/2,nano-banana/2/progpt-5.4Structure