-
Notifications
You must be signed in to change notification settings - Fork 48
Add Work IQ MCP Server to Foundry catalog #198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
xllixin
wants to merge
7
commits into
Azure:main
Choose a base branch
from
xllixin:add-workiq-mcp-server
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+82
−0
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
183c422
Add Work IQ MCP Server to Foundry catalog
xllixin b92f676
Fix audience to use Work IQ app ID from manifest webApplicationInfo
xllixin b01b027
Update OAuth scope to WorkIQSettings.ReadWrite.All
xllixin 444ad3d
Update OAuth scope to WorkIQAgent.Ask
xllixin ef5ebd3
Update remote URL to substrate-sdf.office.com
xllixin 45847e7
Update documentation URL to learn.microsoft.com
xllixin 3c23c02
Update remote URL to workiq.svc.cloud.microsoft
xllixin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"], | ||
| "audience": "fdcc1f02-fc51-4226-8753-f668596af7f7", | ||
| "versionName": "original", | ||
| "customProperties": { "x-ms-preview": true }, | ||
| "tags": ["workiq"] | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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