Skip to content

feat(openai): add OpenAI MCP server synced to current Docs spec#64

Draft
Copilot wants to merge 2 commits intomainfrom
copilot/sync-openai-docs-updates
Draft

feat(openai): add OpenAI MCP server synced to current Docs spec#64
Copilot wants to merge 2 commits intomainfrom
copilot/sync-openai-docs-updates

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 25, 2026

The AceDataCloud Docs dropped gpt-5.4 from the openai OpenAPI spec (canary sync test). No openai/ 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

Tool Endpoint
openai_chat_completion POST /openai/chat/completions
openai_embeddings POST /openai/embeddings
openai_image_generate POST /openai/images/generations
openai_responses POST /openai/responses
openai_image_edit POST /openai/images/edits
openai_list_models informational — lists all models by category

Model coverage (from spec)

  • Chat completions: gpt-5.5, gpt-5.5-pro, gpt-5.2, gpt-5.1, gpt-5, gpt-4o, gpt-4.1, o1o4-mini families — no gpt-5.4
  • Embeddings: text-embedding-3-small/large, text-embedding-ada-002
  • Images: dall-e-3, gpt-image-1/1.5/2, nano-banana/2/pro
  • Responses: full extended model list matching spec — no gpt-5.4

Structure

openai/
├── core/          # config, client, server, exceptions, oauth
├── tools/         # openai_tools.py + info_tools.py
├── prompts/
├── tests/         # unit tests for client + config; integration stubs
├── main.py
├── pyproject.toml
└── Dockerfile / deploy / vscode / ...

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
Copilot AI requested a review from Germey April 25, 2026 07:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

sync: update from Docs (09585ab test(canary): temporarily drop gpt-5.4 to exercise Sync from Docs fan-out)

2 participants