
TL;DR
On June 16, 2026, Microsoft's Work IQ APIs reach general availability - a workplace intelligence layer that hands agents pre-assembled, permission-trimmed Microsoft 365 context instead of raw Graph calls. Here is what the four domains, three protocols, and consumption pricing mean for developers building enterprise agents.
Most enterprise agents fail at the same place: getting grounded. An agent that needs to answer "what did my team decide about the Q3 launch" has to stitch together emails, a meeting transcript, a few chat threads, and a SharePoint doc - then trim all of it to what the current user is actually allowed to see. Today that means orchestrating dozens of raw Microsoft Graph calls and writing the permission logic yourself.
Microsoft's pitch with Work IQ is that you should stop doing that. Announced at Build 2026 on June 2 and reaching general availability on June 16, 2026, the Work IQ APIs expose a workplace intelligence layer that pre-assembles grounded, permission-scoped context and hands it back to your agent as a ready-to-use input.
Last updated: June 17, 2026
Microsoft describes Work IQ as "the workplace intelligence layer for agents, capturing how work actually happens across Microsoft 365, organizational systems and external sources: people, emails, documents, meetings and how they connect." The APIs give agents "programmatic access to this intelligence layer."
The framing in Microsoft's own announcement is blunt about why the old approach does not work for agents: "Traditional interfaces were designed for human interaction, but agents work differently. They need richer context, simpler tool surfaces, lower latency, and enterprise controls built in from the start." (Microsoft 365 Blog)
So instead of your agent calling Graph and reassembling context, it calls Work IQ, which returns the digested, permission-trimmed context it needs.
Per Microsoft's developer blog, the API is organized into four domains (Microsoft 365 Developer Blog):
The "10 generic tools" detail is the one worth sitting with. Microsoft says the APIs "collapse functionality into just 10 generic tools with progressive disclosure through model context protocol (MCP), so developers do not need to teach agents hundreds of data-specific tools." Progressive disclosure means the agent discovers structure at runtime - a getSchema call lets agents "adapt automatically to new data and evolving scenarios without changes to the API surface."
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
Jun 17, 2026 • 11 min read
Jun 17, 2026 • 8 min read
Jun 17, 2026 • 6 min read
Jun 17, 2026 • 6 min read
Work IQ ships across three access protocols, which is unusual breadth for a launch:
If you are already building MCP-native agents, this is the relevant hook: Work IQ is a remote MCP server you can point an existing agent at, rather than a proprietary SDK you have to adopt wholesale.
This is the part that matters most for anyone shipping into a regulated org. Microsoft describes a two-layer model: broad permissions establish access boundaries, and a Rego-based policy engine enforces context-aware rules on every request - evaluating resource paths, methods, user identity, and data content.
The operative line from the developer blog: "Actions are user scoped, meaning every request runs in the context of a specific user and only accesses what that user is allowed to see or do."
That is the explicit answer to the oversharing problem that has dogged enterprise RAG and Copilot deployments - where an agent surfaces a document the asking user was never supposed to see. Whether the enforcement holds up in practice is something teams will need to validate against their own tenants, but the design intent is clearly to make user-scoped access the default rather than an afterthought.
Work IQ is billed through a consumption-based model using Copilot Credits, a unified currency Microsoft is also extending to Copilot Studio and other AI services. Per Microsoft's materials, there is no separate Work IQ subscription, SKU, or per-user license, and billing is independent of Microsoft 365 Copilot licensing - meaning even users without a Copilot license can be billed consumptively when custom or third-party agents call the API.
Microsoft has not published per-unit Copilot Credit rates in the launch posts, so model your costs against the consumption meter once it is live rather than assuming a flat per-seat number.
The announcement references "developers and IT administrators" building agents, and a public preview is already available on GitHub ahead of the GA date, at github.com/microsoft/work-iq. The enterprise framing runs through everything - this is built for agents operating inside an organization's Microsoft 365 tenant, not consumer apps - but access is not described as gated to a closed partner set.
If you are building agents that need to reason over Microsoft 365 data - and a large share of enterprise agent projects do - Work IQ is worth evaluating now while it is in preview, before committing to a hand-rolled Graph orchestration layer you would have to maintain forever.
Three honest caveats:
For teams already deep in Microsoft 365, Work IQ removes a genuinely painful chunk of plumbing. For everyone else, it is a useful signal of where agent infrastructure is heading: less raw API stitching, more pre-grounded, permission-aware context delivered through MCP.
Read next
Microsoft unveiled seven in-house MAI models at Build 2026, including MAI-Code-1-Flash now shipping in GitHub Copilot. Here is what the MoE architecture, training data, and Copilot rollout mean for your team's toolchain decisions in H2 2026.
7 min readBefore an AI agent gets tools, files, APIs, MCP servers, or deployment access, decide what it can read, write, call, log, and roll back.
8 min readGraphify is trending because coding agents keep hitting the same wall: they can edit files, but they still need a durable map of how the codebase, docs, schemas, and decisions connect.
8 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Gives AI agents access to 250+ external tools (GitHub, Slack, Gmail, databases) with managed OAuth. Handles the auth and...
View ToolLightweight Python framework for multi-agent systems. Agent handoffs, tool use, guardrails, tracing. Successor to the ex...
View ToolTypeScript-first AI agent framework. Agents, tools, memory, workflows, RAG, evals, tracing, MCP, and production deployme...
View ToolMulti-agent orchestration framework built on the OpenAI Agents SDK. Define agent roles, typed tools, and directional com...
View ToolSee exactly what your agent did, locally. No cloud, no signup.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppKnow what each agent run cost before the bill arrives. Budgets and alerts included.
View AppWhat MCP servers are, how they work, and how to build your own in 5 minutes.
AI AgentsConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsA complete, citation-backed Claude Code course with setup, prompting systems, MCP, CI, security, cost controls, and capstone workflows.
ai-development
Microsoft unveiled seven in-house MAI models at Build 2026, including MAI-Code-1-Flash now shipping in GitHub Copilot. H...

Before an AI agent gets tools, files, APIs, MCP servers, or deployment access, decide what it can read, write, call, log...

Graphify is trending because coding agents keep hitting the same wall: they can edit files, but they still need a durabl...

Anthropic's Stainless acquisition is not just an SDK deal. It is a bet that agents need generated SDKs, CLIs, docs, and...

Most agent tool APIs are just REST endpoints with nicer names. Production agents need intent-shaped tools that compress...

OpenClaw has 247K stars and zero MCPs. The best tools for AI agents aren't new protocols - they're the CLIs developers h...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.