From b5d61942f6059aa8ec03f970ef16fb1097b981b4 Mon Sep 17 00:00:00 2001 From: LjjJzd <3542531707@qq.com> Date: Wed, 17 Jun 2026 10:27:28 +0800 Subject: [PATCH] docs: clarify Cosmos OpenAI endpoint constraint --- servers/Azure.Mcp.Server/docs/azmcp-commands.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/servers/Azure.Mcp.Server/docs/azmcp-commands.md b/servers/Azure.Mcp.Server/docs/azmcp-commands.md index 4e16f9603e..9494d1953c 100644 --- a/servers/Azure.Mcp.Server/docs/azmcp-commands.md +++ b/servers/Azure.Mcp.Server/docs/azmcp-commands.md @@ -2145,6 +2145,9 @@ azmcp cosmos database container item text-search --subscription \ # support custom dimensions like "text-embedding-3-small" or "text-embedding-3-large". Optionally pass # --properties-to-select to project specific fields; when omitted the full document is returned with the vector # property stripped so the embedding doesn't bloat the response. Requires a vector index on the vector property. +# --openai-endpoint must be a trusted Azure first-party HTTPS endpoint on one of the following domains: +# *.openai.azure.com, *.cognitiveservices.azure.com, *.services.ai.azure.com +# (and their US Government / China sovereign cloud equivalents). HTTP endpoints and non-Azure domains are rejected. # ❌ Destructive | ✅ Idempotent | ❌ OpenWorld | ✅ ReadOnly | ❌ Secret | ❌ LocalRequired azmcp cosmos database container item vector-search --subscription \ --account \ @@ -2152,7 +2155,7 @@ azmcp cosmos database container item vector-search --subscription --container \ --vector-property \ --search-text "free-form text" \ - --openai-endpoint \ + --openai-endpoint \ --embedding-deployment \ [--properties-to-select ] \ [--count 10] \