Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added community/registry/icons/WorkIQMCPServer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
82 changes: 82 additions & 0 deletions partners/servers/workiq-mcp-server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"name": "microsoft-work-iq-mcp-frontier",
"title": "Work IQ MCP",
"summary": "Work IQ MCP Server exposes Microsoft Graph as MCP tools for AI agents. Learn more at https://learn.microsoft.com/en-us/microsoft-365/copilot/extensibility/work-iq-api-overview",
"description": "The Work IQ MCP Server exposes Microsoft Graph as a set of tools for AI agents — read, create, update, and delete M365 entities (mail, calendar, files, chats, and more), search and retrieve OpenAPI schemas, list available agents, and ask M365 Copilot or route requests to specific A2A agents. This feature is in preview and is part of the Work IQ tools, providing shared work intelligence and actions for agents. Availability and capabilities are subject to change. Learn more: https://learn.microsoft.com/en-us/microsoft-365/copilot/extensibility/work-iq-api-overview",
"kind": "mcp",
"vendor": "Microsoft",
"externalDocumentation": {
"title": "Work IQ MCP Servers",
"url": "https://learn.microsoft.com/en-us/microsoft-365/copilot/extensibility/work-iq-api-overview"
},
"remote": "https://workiq.svc.cloud.microsoft",
"supportContactInfo": {
"name": "customer support contact",
"url": "https://aka.ms/WorkIQToolsSupport"
},
"license": {
"name": "Work IQ",
"url": "https://learn.microsoft.com/en-us/microsoft-365/copilot/extensibility/work-iq-api-overview"
},
"visibility": "true",
"categories": "Productivity",
"icon": "https://cdn.jsdelivr.net/gh/Azure/MCP/community/registry/icons/WorkIQMCPServer.png",
"useCases": [
{
"name": "Chat with M365 Copilot",
"description": "Send a question or request to Microsoft 365 Copilot, or trigger a specific A2A agent via agentId, and get its response. Supports multi-turn conversations with context preservation via conversationId, and accepts OneDrive or SharePoint file URLs as grounding context."
},
{
"name": "List Available Agents",
"description": "List available A2A agents that can be targeted via ask_work_iq. Returns agent identifiers, names, and providers so orchestrators can discover and route requests to specific agents."
},
{
"name": "Fetch M365 Entities",
"description": "Fetch one or more Microsoft Graph entities by relative path (e.g., /me/messages, /me/events/{id}). Returns JSON results for each requested path, enabling agents to read mail, calendar events, files, chats, and other M365 data."
},
{
"name": "Create M365 Entities",
"description": "Create new Microsoft Graph entities by POSTing JSON to a parent collection path (e.g., /me/messages, /me/events). Use get_schema_work_iq first to discover required fields. Returns the created entity JSON."
},
{
"name": "Update M365 Entities",
"description": "Update existing Microsoft Graph entities by PATCHing JSON to an entity path (e.g., /me/messages/{id}, /me/events/{id}). Only include fields you want to change. Returns the updated entity JSON."
},
{
"name": "Delete M365 Entities",
"description": "Delete a Microsoft Graph entity by relative path. Sends HTTP DELETE and returns confirmation with status code on success, enabling agents to clean up mail, events, or other M365 resources."
},
{
"name": "Execute M365 Actions",
"description": "Execute Microsoft Graph actions via HTTP POST (e.g., /me/sendMail, /me/messages/{id}/copy). Actions perform complex operations like sending mail, copying or moving items. Use get_schema_work_iq first to discover required parameters."
},
{
"name": "Call M365 Functions",
"description": "Call Microsoft Graph functions via HTTP GET (e.g., /me/calendar/getSchedule, /me/calendarView/delta). Functions compute or synthesize data rather than simply reading entities, such as getting schedules, running delta queries, or retrieving reminders."
},
{
"name": "Get OpenAPI Schema",
"description": "Get the OpenAPI schema for a Microsoft Graph operation, returning a self-contained YAML schema with request/response schemas inlined. Use to discover required fields before creating or updating entities. Supports graph-v1, SharePoint REST, and Dataverse backends."
},
{
"name": "Search API Paths",
"description": "Search for available Microsoft Graph API paths using a regex filter. Use to discover what entity paths are available before calling fetch, create, update, or delete operations. Supports graph-v1, SharePoint REST, and Dataverse backends."
}
],
"securitySchemes": {
"workiqoauth2": {
"type": "oauth2",
"description": "Authenticate with Work IQ using OAuth2 authorization code flow with PKCE support.",
"flows": ["authorizationCode"],
"authorizationUrl": "https://login.microsoftonline.com",
"tokenUrl": "https://login.microsoftonline.com",
"refreshUrl": "https://login.microsoftonline.com",
"scopes": ["fdcc1f02-fc51-4226-8753-f668596af7f7/WorkIQAgent.Ask"]
}
},
"authSchemas": ["OAuth2"],
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this one to support admin consent

"audience": "fdcc1f02-fc51-4226-8753-f668596af7f7",
"versionName": "original",
"customProperties": { "x-ms-preview": true },
"tags": ["workiq"]
}