msloop-mcp
Provides read access to Microsoft Loop workspaces and pages, including listing workspaces and pages, reading page content as Markdown, searching across Loop files, and experimental workspace creation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@msloop-mcplist my workspaces"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
msloop-mcp
MCP server for Microsoft Loop. No app registration required.
Give any MCP client (Claude, Cursor, Devin, ...) read access to your Microsoft Loop workspaces and pages. It works by reusing your existing Loop web session, the same way msteams-mcp and msoutlook-mcp reuse the Teams and Outlook web sessions: you sign in once in a browser, then tokens are cached and refreshed automatically.
Why
Microsoft does not publish a public API for Loop. This server reuses the Loop web app's own first party client ID, so your access is exactly what your account already has, with no Azure app registration, no admin consent, and no client secrets. Nothing leaves your own machine.
Related MCP server: m365-mcp-server
What it can and cannot do
Loop is built differently from Teams or Outlook. Pages are not REST resources, they are Fluid Framework documents stored in SharePoint Embedded containers, and there is no public content-write API. So this server is a read and discovery tool, not a read-write one:
Supported: list workspaces, list pages in a workspace, read a page's content as Markdown (or raw HTML), search across your Loop files, and an experimental workspace creation.
Not supported: creating or editing page content, real time collaboration. These need the in browser Fluid runtime and have no HTTP API.
Page content is read by asking SharePoint to render the Fluid document to HTML on demand (the ?format=html export), which is then converted to Markdown. Rich, interactive components (tables, voting, mentions) may render approximately.
How it works
The Loop web app (loop.cloud.microsoft) uses MSAL to store OAuth tokens in the browser. This server:
Opens a browser to
loop.cloud.microsoftvia Playwright.Extracts the MSAL tokens from local and session storage, using Loop's own first party client ID (
a187e399-0c36-4b98-8f04-1edc167a0996). It keeps three: a Substrate token (workspace and page metadata), a SharePoint token (page content), and a Graph token (search).Caches the access tokens, refresh token, and session state in
~/.msloop-mcp-server/(AES-256-GCM encrypted).Refreshes tokens automatically using the refresh token (HTTP, no browser) or a headless browser as fallback.
Quick start
{
"mcpServers": {
"loop": {
"command": "npx",
"args": ["-y", "msloop-mcp@latest"]
}
}
}Then run loop_login from your MCP client. On first use a browser opens so you can sign in; after that, logins are silent and no browser appears. Do not close the window manually, it closes itself once you are signed in.
Tools
Auth
Tool | Description |
| Sign in to Loop (silent if possible, browser only when needed) |
| Check authentication status and token validity |
| Clear the saved session and tokens |
Workspaces and pages
Tool | Description |
| List all Loop workspaces you can access, including your personal "My workspace" |
| List the pages in a workspace (pass a workspace id) |
| Read a page's content as Markdown (or |
| Search across your Loop pages and components by keyword (via Microsoft Graph) |
| Experimental. Create a new shared workspace. Content cannot be created via API |
Session storage
Session files are stored encrypted in ~/.msloop-mcp-server/:
session-state.json: Playwright browser session (cookies + localStorage)token-cache.json: Extracted and cached tokensbrowser-profile/: Persistent browser profile for headless refresh
If your session expires, run loop_login again.
Token refresh
Tokens are refreshed automatically:
HTTP refresh (fast, no browser): uses the cached refresh token with Loop's client ID, one call per resource (Substrate, SharePoint, Graph).
Headless browser refresh: fallback if HTTP refresh fails; opens a headless browser with the saved profile to silently reacquire tokens.
Requirements
Node.js 20+
A Chromium based browser: Edge or Chrome (detected automatically from system default)
A Microsoft 365 work or school account with access to Microsoft Loop
Environment variables
Variable | Description |
| Enable debug logging to stderr |
| Force a specific browser: |
| Pin a specific Chrome profile dir for cookie import (e.g. |
| Pin a specific Edge profile dir for cookie import (e.g. |
| Skip importing SSO cookies from your real browser (avoids the one time Keychain/keyring prompt). You sign in once manually; the persistent profile then remembers the session |
Security notes
Uses the same auth as the Loop web client, so your access is limited to what your account can do.
Tokens are encrypted at rest (AES-256-GCM with a machine derived key).
Uses undocumented internal APIs, which Microsoft may change without notice.
Acknowledgements
The Loop endpoint mapping (Substrate discovery, the SharePoint multipart "GET via POST" convention, and the HTML export route) was informed by exec-astraea/loop-migration and Nico De Cleyre's "Microsoft Loop under the hood".
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shayanline/msloop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server