Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion servers/Azure.Mcp.Server/docs/azmcp-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -2145,14 +2145,17 @@ azmcp cosmos database container item text-search --subscription <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 <subscription> \
--account <account> \
--database <database> \
--container <container> \
--vector-property <vector-property> \
--search-text "free-form text" \
--openai-endpoint <endpoint> \
--openai-endpoint <azure-openai-endpoint> \
--embedding-deployment <deployment> \
[--properties-to-select <p1,p2,...>] \
[--count 10] \
Expand Down