Download hosted content (such as images) from a chat message. Returns the content as base64 encoded data along with metadata. Use this to retrieve images or other inline content embedded in chat messages.
AI agents call download_chat_hosted_content to retrieve information from Teams without modifying anything — typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.
This tool performs a read operation by downloading and returning message content as base64-encoded data. It has no side effects, does not modify data, execute commands, delete content, or trigger financial transactions. The blast radius is minimal—misuse would expose already-accessible chat content but cannot cause harm beyond information disclosure of content the user has authorization to access.
From the tool's definition Tool description explicitly states 'Download hosted content' and 'retrieve images or other inline content embedded in chat messages.' The action is retrieval-only with no modification, deletion, or execution capability.
Attacks that exploit this kind of access
Download hosted content (such as images) from a chat message. Returns the content as base64 encoded data along with metadata. Use this to retrieve images or other inline content embedded in chat messages. It is categorised as a Read tool in the Teams MCP Server, which means it retrieves data without modifying state.
Register the Teams MCP server in PolicyLayer and add a rule for download_chat_hosted_content: allow, deny, rate-limit, or require approval. Point your MCP client at the PolicyLayer proxy URL and the rule is enforced on every call, before it reaches Teams. Nothing to install.
download_chat_hosted_content is a Read tool with low risk. Read-only tools are generally safe to allow by default.
Yes. Add a rate_limit block to the download_chat_hosted_content rule in your PolicyLayer policy. For example, setting max: 10 and window: 60 limits the tool to 10 calls per minute. Rate limits are tracked per agent session and reset automatically.
Set action: deny in the PolicyLayer policy for download_chat_hosted_content. The AI agent will receive a policy violation error and cannot call the tool. You can also include a reason field to explain why the tool is blocked.
download_chat_hosted_content is provided by the Teams MCP server (@floriscornel/teams-mcp). PolicyLayer sits as a proxy in front of this server to enforce policies before tool calls reach the server.