outlook_get_message
Pack: outlook-mail · Endpoint: https://gateway.pipeworx.io/outlook-mail/mcp
Get the full content of a single Outlook / Microsoft 365 email message by its ID, including subject, sender, recipients (to/cc), received time, and the full body (HTML or text). Use after outlook_list_messages or outlook_search_messages to read an email in full.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | The ID of the email message to retrieve (from a list or search result). |
Example call
curl -X POST https://gateway.pipeworx.io/outlook-mail/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"outlook_get_message","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"outlook-mail": {
"url": "https://gateway.pipeworx.io/outlook-mail/mcp"
}
}
}
See Getting Started for client-specific install steps.