Microsoft Graph Transcript MCP
A remote Model Context Protocol (MCP) server that retrieves Microsoft Teams meeting transcripts via the Microsoft Graph API, using delegated **OAuth 2.0 On-Behalf-Of (OBO)** authentication. Designed for integration with Microsoft Copilot Studio (via
What is Microsoft Graph Transcript MCP?
Microsoft Graph Transcript MCP is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to remote model context protocol (mcp) server that retrieves microsoft teams meeting transcripts via the microsoft graph api, using delegated **oauth 2.0 on-behalf-of (obo)** authentication. designed for...
A remote Model Context Protocol (MCP) server that retrieves Microsoft Teams meeting transcripts via the Microsoft Graph API, using delegated **OAuth 2.0 On-Behalf-Of (OBO)** authentication. Designed for integration with Microsoft Copilot Studio (via
This server falls under the Communication and Search & Data Extraction categories on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A remote Model Context Protocol (MCP) server that retrieves
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx microsoftgraph-transcript-mcpConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Microsoft Graph Transcript MCP
Microsoft Graph Transcript MCP is a remote MCP server that retrieves Microsoft Teams meeting transcripts via the Microsoft Graph API, using OAuth 2.0 On-Behalf-Of (OBO) delegated authentication so the server only ever accesses meetings the signed-in user can see. It is designed to be deployed to Azure Container Apps and integrates directly with Microsoft Copilot Studio via the MCP Wizard, though any MCP-compatible client can connect. The server provides three tools — listing recent meetings, retrieving cleaned speaker-attributed transcripts, and saving transcripts to SharePoint — enabling downstream AI workflows like summarisation, action-item extraction, sentiment analysis, and compliance auditing.
Prerequisites
- An Azure subscription with permission to create App Registrations and Container Apps
- A Microsoft 365 tenant with Teams meetings and transcription enabled
- An Azure AD App Registration with delegated Graph API permissions: Calendars.Read, OnlineMeetings.Read, OnlineMeetingTranscript.Read.All
- Node.js 20 or Docker for local development
- Microsoft Copilot Studio or another MCP-compatible client
Create an Azure App Registration
In the Azure Portal, create a new App Registration. Add a redirect URI of type 'Web' for your deployment URL. Under API Permissions, add delegated permissions: Calendars.Read, OnlineMeetings.Read, and OnlineMeetingTranscript.Read.All. Create a client secret and note the Client ID, Tenant ID, and Client Secret.
Configure environment variables
Set the required environment variables for the server. These are injected at runtime and should never be committed to source control.
AZURE_CLIENT_ID=your-app-registration-client-id
AZURE_CLIENT_SECRET=your-client-secret
AZURE_TENANT_ID=your-tenant-idBuild and run locally with Docker
Clone the repository, build the Docker image, and run it locally to test before deploying to Azure Container Apps.
git clone https://github.com/ITSpecialist111/MicrosoftGraph_Transcript_MCP.git
cd MicrosoftGraph_Transcript_MCP
docker build -t transcript-mcp .
docker run -p 3000:3000 \
-e AZURE_CLIENT_ID=$AZURE_CLIENT_ID \
-e AZURE_CLIENT_SECRET=$AZURE_CLIENT_SECRET \
-e AZURE_TENANT_ID=$AZURE_TENANT_ID \
transcript-mcpDeploy to Azure Container Apps
Deploy the container to Azure Container Apps for a scalable, stateless production deployment. The server scales to zero when idle with approximately 250ms cold start.
az containerapp create \
--name transcript-mcp \
--resource-group my-rg \
--environment my-env \
--image transcript-mcp:latest \
--env-vars AZURE_CLIENT_ID=... AZURE_CLIENT_SECRET=... AZURE_TENANT_ID=... \
--ingress external --target-port 3000Connect Copilot Studio to the remote MCP server
In Microsoft Copilot Studio, use the MCP Wizard to add a new custom action. Enter the HTTPS URL of your Azure Container Apps deployment (e.g. https://transcript-mcp.azurecontainerapps.io/mcp) and complete the OAuth 2.0 connection using your App Registration credentials.
Microsoft Graph Transcript MCP Examples
Client configuration
Remote MCP server connection config for a client that supports HTTP transport with Bearer token auth.
{
"mcpServers": {
"transcript-mcp": {
"url": "https://your-container-app.azurecontainerapps.io/mcp",
"headers": {
"Authorization": "Bearer ${USER_ACCESS_TOKEN}"
}
}
}
}Prompts to try
Example prompts for a Copilot Studio agent or MCP client connected to the server.
- "List my Teams meetings from the past week"
- "Get the transcript from the Design Review meeting on Monday"
- "Summarise the action items from the TredStone client call"
- "Save the transcript from yesterday's standup to SharePoint"
- "What did we decide in the architecture review meeting?"Troubleshooting Microsoft Graph Transcript MCP
OBO token exchange fails with 'AADSTS65001: The user or administrator has not consented'
An administrator must grant tenant-wide consent for the delegated permissions (Calendars.Read, OnlineMeetings.Read, OnlineMeetingTranscript.Read.All). In the Azure Portal, go to your App Registration → API Permissions and click 'Grant admin consent for [tenant]'.
list_recent_meetings returns no results even though meetings exist in Teams
The tool uses /me/calendarView with a 30-day lookback window. Ensure your meetings were in the calendar (not just ad-hoc calls) and that the signed-in user has the Calendars.Read permission granted. Meetings without transcription enabled will have no transcript to retrieve.
Container exits immediately after deployment with no logs
Check that all three environment variables (AZURE_CLIENT_ID, AZURE_CLIENT_SECRET, AZURE_TENANT_ID) are set correctly in the Container App environment. Missing variables cause MSAL to fail on startup. View logs with: az containerapp logs show --name transcript-mcp --resource-group my-rg
Frequently Asked Questions about Microsoft Graph Transcript MCP
What is Microsoft Graph Transcript MCP?
Microsoft Graph Transcript MCP is a Model Context Protocol (MCP) server that remote model context protocol (mcp) server that retrieves microsoft teams meeting transcripts via the microsoft graph api, using delegated **oauth 2.0 on-behalf-of (obo)** authentication. designed for integration with microsoft copilot studio (via It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Microsoft Graph Transcript MCP?
Follow the installation instructions on the Microsoft Graph Transcript MCP GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Microsoft Graph Transcript MCP?
Microsoft Graph Transcript MCP works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Microsoft Graph Transcript MCP free to use?
Yes, Microsoft Graph Transcript MCP is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
Microsoft Graph Transcript MCP Alternatives — Similar Communication Servers
Looking for alternatives to Microsoft Graph Transcript MCP? Here are other popular communication servers you can use with Claude, Cursor, and VS Code.
Slack
★ 86.1kEnables interaction with Slack workspaces through comprehensive channel management, messaging, user management, file uploads, and Block Kit formatting. Features secure credential storage via macOS Keychain and supports all major Slack operations incl
LibreChat
★ 37.3kEnhanced ChatGPT Clone: Features Agents, MCP, DeepSeek, Anthropic, AWS, OpenAI, Responses API, Azure, Groq, o1, GPT-5, Mistral, OpenRouter, Vertex AI, Gemini, Artifacts, AI model switching, message search, Code Interpreter, langchain, DALL-E-3, OpenA
Note Gen
★ 11.9kA cross-platform Markdown AI note-taking software.
DeepChat
★ 5.8k🐬DeepChat - A smart assistant that connects powerful AI to your personal world
WhatsApp MCP
★ 5.7kConnects AI assistants to the official Meta WhatsApp Cloud API for managing conversations and sending various message types through natural language. It provides tools for media management, template messages, and real-time webhook processing without
Apple
★ 3.1kEnables interaction with Apple apps like Messages, Notes, and Contacts through the MCP protocol to send messages, search, and open app content using natural language.
Browse More Communication MCP Servers
Explore all communication servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Microsoft Graph Transcript MCP in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Microsoft Graph Transcript MCP?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.