skillfed

microsoft-agents-hosting-core

Core library for Microsoft Agents

microsoft-agents-hosting-core v1.3.0 938.5K downloads/30d#4,685 on PyPI1,036
Permissive license MIT Active released

What it is and what it does

microsoft-agents-hosting-core is the foundational library for the Microsoft 365 Agents SDK, providing the orchestration engine for building production-grade conversational agents. It supplies the core classes (AgentApplication, TurnContext, TurnState) and infrastructure for activity routing, multi-turn conversation state, and channel communication. The library handles the complex plumbing of agent lifecycle management, state persistence across conversation turns, and integration with authentication systems.

Developers use it to build agents that respond to messages through decorator-based routing, manage conversation state across turns, and handle errors consistently. It depends on microsoft-agents-activity for the Activity protocol types, pyjwt for token handling, python-dotenv for configuration, and opentelemetry for observability. The library is designed to work with hosting adapters (aiohttp, FastAPI, Teams, Slack) that you install separately depending on your deployment target.

Use it for:

  • Build a Teams bot that maintains conversation state and routes messages to handler functions based on content patterns
  • Create a multi-platform agent that handles the same business logic across Teams, Slack, and web chat with unified state management
  • Implement enterprise-grade error handling and observability for production agents using OpenTelemetry integration
  • Develop agents with role-based authorization and authentication using the built-in Authorization and ClaimsIdentity classes
  • Manage complex multi-turn conversations with ConversationState, UserState, and TempState across different scopes

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides the core hosting infrastructure for building conversational AI agents that work across Microsoft 365 platforms, handling activity processing, state management, authentication, and channel communication.

Yes. The package is actively maintained, has no known vulnerabilities, uses a permissive MIT license, and provides low-friction installation. It is the required foundation for any Microsoft 365 agent development in Python. Install it if you are building agents for Teams, M365 Copilot, or other Microsoft platforms; skip it if you need agents for non-Microsoft channels only.

Install

microsoft-agents-hosting-core on PyPI

pip

pip install microsoft-agents-hosting-core

uv

uv add microsoft-agents-hosting-core

poetry

poetry add microsoft-agents-hosting-core

Installing microsoft-agents-hosting-core

Before you install

Low install friction with a pure-Python wheel distribution. The package is actively maintained with a recent release (15 days old) and steady commit activity. Dependencies are standard (JWT, ISO date parsing, environment config, observability) with no compiled components.

License in practice

MIT license permits free use, modification, and distribution with minimal restrictions, making it suitable for both open-source and commercial projects.

Quickstart

pip install microsoft-agents-hosting-core

from microsoft_agents_hosting_core import AgentApplication, TurnContext, TurnState
from microsoft_agents_activity import MemoryStorage

STORAGE = MemoryStorage()
AGENT_APP = AgentApplication[TurnState](storage=STORAGE)

@AGENT_APP.activity("message")
async def on_message(context: TurnContext, state: TurnState):
    await context.send_activity(f"You said: {context.activity.text}")

Requires Python 3.10 or later; also requires a hosting adapter (aiohttp, FastAPI, or Teams) and authentication configuration to run a complete agent.

Verify before relying

  • Whether the package requires Azure credentials or Microsoft 365 tenant setup to function beyond basic examples
  • Performance characteristics and scalability limits for concurrent agent instances
  • Compatibility with third-party channel integrations (Slack, Facebook, Twilio) mentioned in description but not detailed in core library scope

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 6 — microsoft-agents-activity, pyjwt, isodate, python-dotenv, opentelemetry-api, opentelemetry-sdk
Maintenance actively maintained — 15 days since the last release
Last repo commit
First released
Downloads 938,513/month — #4,685 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: microsoft_agents_hosting_core-1.3.0-py3-none-any.whl

Operating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

microsoft agents sdk pythonconversational ai agent frameworkteams bot hosting librarymulti-turn conversation state managementactivity-based agent routingenterprise agent orchestrationmicrosoft 365 agent platform
conversational-aimicrosoft-365multi-turn-state

More Application Frameworks packages

fastapi

FastAPI is a Python web framework for building…

permissive · top 100 on PyPI

annotated-doc

Provides a way to document function parameters,…

permissive · top 100 on PyPI

textual

Textual is a Python framework for building…

permissive · top 100 on PyPI

typer

Typer builds command-line applications from…

permissive · top 1,000 on PyPI

mcp

Build and connect to Model Context Protocol…

permissive · top 1,000 on PyPI

Werkzeug

Werkzeug is a WSGI utility library providing…

permissive · top 1,000 on PyPI

microsoft-agents-activity

Provides core types and schemas implementing…

permissive · top 5,000 on PyPI

microsoft-agents-hosting-aiohttp

Provides HTTP hosting integration for Microsoft…

permissive · top 15,000 on PyPI

microsoft-agents-hosting-fastapi

Provides FastAPI integration for building and…

permissive · top 15,000 on PyPI

microsoft-agents-hosting-teams

Provides Teams-specific handlers and utilities…

permissive · top 15,000 on PyPI

microsoft-agents-authentication-msal

Provides MSAL-based authentication for…

permissive · top 15,000 on PyPI

microsoft-agents-copilotstudio-client

Connects Python applications to AI agents…

permissive · top 15,000 on PyPI

microsoft-teams-apps

Framework for building Microsoft Teams…

permissive · top 15,000 on PyPI

agent-framework-core

Build, orchestrate, and deploy AI agents and…

permissive · top 5,000 on PyPI

agent-framework

Builds and orchestrates AI agents powered by…

permissive · top 5,000 on PyPI

microsoft-agents-a365-runtime

Provides core runtime utilities, environment…

permissive · top 15,000 on PyPI

Further reading