Microsoft
Developer Blogs

Get the latest information, insights, and news from Microsoft.

Highlights

Microsoft Teams SDK for Python banner

SQL MCP Server as an App Service

Run SQL MCP Server on Azure App Service without containers. This walkthrough uses Data API builder to configure authentication, expose MCP, REST, and GraphQL endpoints, and deploy as code.
Read moreClick to read more about this post

Latest posts

May 4, 2026
Post comments count2
Post likes count9

There is no Install - it's 'Stage' and 'Register'

Howard Kapustein
"Is ContosoParts.msix installed?" is a common - but misleading - question The term install is not a formal concept in MSIX. This may seem paradoxical for a deployment technology, but it makes perfect sense once you understand MSIX deployment’s core architecture. Deployment...
Inside MSIX
May 4, 2026
Post comments count1
Post likes count3

How do I inform Windows that I'm writing a binary file?

Raymond Chen
You don't. All files are binary at the file system level.
The Old New Thing
May 3, 2026
Post comments count0
Post likes count0

Removing The Monkey Work of Migration

davidwright,
Arnaud,
Suzanne
Removing The Monkey Work of Migration; in this post we show how Git-Ape analyses an AWS deployment repo and generates an Azure-native replacement, with design critique built in. This post walks through a real migration workflow: start with an AWS deployment repo and end with an...
All things Azure
May 3, 2026
Post comments count0
Post likes count0

Introducing Apache Arrow Support in mssql-python

Saumya Garg
Reviewed by Sumit Sarabhai Fetching a million rows from SQL Server into a Polars DataFrame used to mean a million Python objects, a million GC allocations, and then throwing it all away to build a DataFrame. Not anymore. mssql-python now supports fetching SQL Server data...
Microsoft for Python Developers Blog
May 1, 2026
Post comments count0
Post likes count3

Python support for the Microsoft Teams SDK is now generally available

Lily,
Ricky,
Aamir
Python developers can now build Teams-native apps and agents using the same SDK surface that powers modern Teams experiences across our TypeScript and .NET stacks 
Microsoft 365 Developer Blog
May 1, 2026
Post comments count1
Post likes count1

Sponsor group type requirements for agent identities

Microsoft Entra Agent ID team
As part of moving to general availability (GA) for Entra Agent ID, agent identity objects will only accept dynamic membership groups and unified (Microsoft 365) groups as group-type sponsors.
Microsoft 365 Developer Blog
May 1, 2026
Post comments count20
Post likes count10

The new Run dialog: faster, cleaner, and more capable

Clint Rutkas
We've shipped the new Run dialog - and we want to say thanks. As the team behind Windows Terminal and PowerToys, we're excited to bring this to Windows 11, and your feedback helped shape it! Run has been rebuilt from the ground up: Modern design: A refreshed look that matches Fluent...
Windows Command Line
May 1, 2026
Post comments count0
Post likes count2

Introducing langchain-azure-cosmosdb: Build Agentic Apps and RAG with One Database

James,
Aayush
Build AI Agents and RAG Applications with the New LangChain + LangGraph Connector for Azure Cosmos DB Building AI agents and RAG applications today means stitching together half a dozen services, a vector database, a chat history store, a checkpointer for agent state, a semantic cache, a...
Azure Cosmos DB Blog
May 1, 2026
Post comments count1
Post likes count1

Developing a cross-process reader/writer lock with limited readers, part 4: Abandonment

Raymond Chen
Recovering from death of the owner.
The Old New Thing