Pre-release
This release is a pre-release and may not be stable for production use.
Microsoft Agents Hosting - Slack
Integration library for building Slack agents using the Microsoft 365 Agents SDK. Provides direct-to-Slack responses (the full Slack Web API surface, beyond what Azure Bot Service exposes), a typed SlackChannelData envelope with dot-notation property access, and a SlackStream helper for chat.startStream / chat.appendStream / chat.stopStream.
Release Notes
| Version | Date | Release Notes |
|---|---|---|
| 1.5.0 | 2026-08-26 | 1.5.0 Release Notes |
| 1.4.0 | 2026-08-18 | 1.4.0 Release Notes |
| 1.3.0 | 2026-07-30 | 1.3.0 Release Notes |
| 1.2.0 | 2026-07-17 | 1.2.0 Release Notes |
| 1.1.0 | 2026-06-19 | 1.1.0 Release Notes |
Packages Overview
We offer the following PyPI packages to create conversational experiences based on Agents:
Installation
pip install microsoft-agents-hosting-slack
Usage
from microsoft_agents.hosting.core.app import AgentApplication
from microsoft_agents.hosting.slack import SlackAgentExtension
from microsoft_agents.hosting.slack.api import SlackChannelData
app = AgentApplication(options)
slack = SlackAgentExtension(app)
@slack.on_message()
async def on_slack_message(context, state):
channel_data = SlackChannelData.from_activity(context.activity)
await slack.call(
context,
"chat.postMessage",
{
"channel": channel_data.get("event.channel"),
"text": f"You said: {context.activity.text}",
},
token=channel_data.api_token,
)
Key Classes
SlackAgentExtension— registers Slack-channel-scoped message/event handlers; exposescall(...)andcreate_stream(...).SlackChannelData— typed wrapper around Bot Service's Slack channel-data payload withget(path)/try_get(path)accessors.SlackApi— async HTTP client for the Slack Web API.SlackStream— wraps Slack's streaming methods for incremental message updates.SlackHelpers— encode/decode and conversation-id parsing utilities.
Quick Links
Release files for microsoft-agents-hosting-slack 1.6.1.dev3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| microsoft_agents_hosting_slack-1.6.1.dev3.tar.gz | 15.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| microsoft_agents_hosting_slack-1.6.1.dev3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 35.0 kB
Release files / microsoft_agents_hosting_slack-1.6.1.dev3.tar.gz
| Download URL | microsoft_agents_hosting_slack-1.6.1.dev3.tar.gz |
|---|---|
| Size | 15.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8dba75f79876e8b3fa87326bebd1c03bc3b79d12556507d5a87234265a1125f5
|
|
BLAKE2b-256 checksum How to use checksums |
f33f8b3ebdeb7901bed6aa5aca3f29b131c57fec9bcbeaebca9b360c4478ae67
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
RestSharp/106.13.0.0
|
Release files / microsoft_agents_hosting_slack-1.6.1.dev3-py3-none-any.whl
| Download URL | microsoft_agents_hosting_slack-1.6.1.dev3-py3-none-any.whl |
|---|---|
| Size | 19.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
be492eb60541457addd3f6e9fb7ff62806686748677b0f7c52936bc6c902df6e
|
|
BLAKE2b-256 checksum How to use checksums |
7d5ba0c012a09f21e2ee89b508ce1be5a1bee4ed7864cd48d932fbe93dab10e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
RestSharp/106.13.0.0
|