Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions servers/Azure.Mcp.Server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ The Azure MCP Server updates automatically by default whenever a new release com
- Fixed retained-buffer leaks across services (Kusto, EventGrid, AppLens, Speech, Cosmos, Foundry, NetworkResourceProvider) and tool loaders (BaseToolLoader, ServerToolLoader, NamespaceToolLoader, SingleProxyToolLoader) by disposing JsonDocument/HttpResponseMessage instances and cloning returned JsonElements. ([#817](https://github.com/microsoft/mcp/pull/817))

### Other Changes
- Updated the description of the following Communications commands to decrease ambiguity and increase selection accuracy by LLMs: [[#804](https://github.com/microsoft/mcp/pull/804)]
- `azmcp_communication_email_send`
- `azmcp_communication_sms_send`

## 0.9.1 (2025-10-14)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ public sealed class EmailSendCommand(ILogger<EmailSendCommand> logger) : BaseCom

public override string Description =>
"""
Send an email message using Azure Communication Services.

Sends emails to one or more recipients using your Communication Services resource.
Supports HTML content and CC/BCC recipients.
Send emails to one or multiple recipients to the given email-address. The emails can be plain text or HTML formatted. You can include a subject, custom sender name, CC and BCC recipients, and reply-to addresses.
""";

public override ToolMetadata Metadata => new()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed class SmsSendCommand(ILogger<SmsSendCommand> logger) : BaseCommuni

public override string Description =>
"""
Sends SMS messages to one or more recipients using Azure Communication Services.
Sends SMS messages to one or more recipients to the given phone-number. You can enable delivery reports and receipt tracking, broadcast SMS, and tag messages for easier tracking.
Returns message IDs and delivery status for each sent message.
""";

Expand Down