Microsoft Graph Transcript MCP

v1.0.0Communicationstable

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

microsoftgraph-transcript-mcpmcpai-integration
Share:
21
Stars
0
Downloads
0
Weekly
0/5

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

Retrieve Microsoft Teams meeting transcripts via Microsoft Graph API.
Integrate with Microsoft Copilot Studio for meeting analysis.
ITSpecialist111

Maintainer

LicenseMIT
Languagetypescript
Versionv1.0.0
UpdatedApr 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx microsoftgraph-transcript-mcp

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

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
1

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.

2

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-id
3

Build 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-mcp
4

Deploy 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 3000
5

Connect 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.

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.

Quick Config Preview

{ "mcpServers": { "microsoftgraph-transcript-mcp": { "command": "npx", "args": ["-y", "microsoftgraph-transcript-mcp"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

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.

33,000+ ServersFree & Open SourceStep-by-Step Guides