zaungast
zaungast is a read-only, offline MCP server that queries your local Microsoft Teams disk cache without any cloud API, credentials, or network calls.
list_conversations– Browse your Teams sidebar: newest conversations, filtered by kind (1:1, group, channel, meeting), participant, title, or time range.read_messages– Read a conversation's messages in chronological order; supports cursor-based pagination, time-windowed reading, centering around a specific message, and reaction details.search– Full-text search across all messages with filters for sender, conversation, kind, date range, mentions, attachment presence, and exclusions.list_events– Retrieve metadata for calendar meetings and appointments (no join URLs).list_calls– Browse call history: 1:1 and group calls with direction, duration, missed status, and recording pointers.top_topics– Discover trending or distinctive topics over a time window (1d/7d/30d), optionally scoped to a person or conversation, with an example message per topic.find_person– Resolve a name or nickname to a canonical person with their stable handle, message count, and last-contact time; supports browsing the full roster.describe_schema– Inspect the raw Teams IndexedDB structure and propose field mappings — useful when a Teams update changes the database layout.
It is strictly read-only, requires no credentials or tokens, does not use the Microsoft Graph API, and produces token-economical output designed for efficient use with AI/coding agents.
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., "@zaungastfind messages from Anna about the deploy"
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.
zaungast
zaungast (German: someone who watches over the fence without joining in) is a read-only, offline MCP server for Teams — search chats, read conversations, surface trending topics, and find people straight from the local on-disk cache, with no Graph API, no cloud, and no credentials, and token-economical output for coding agents (Claude Code, Claude Desktop, …).
The new Teams client stores your chats in a local on-disk database; zaungast reads a copy of it directly and serves it over MCP, so your agent can pull in Teams context — "what was decided about the release date", "catch me up on a channel I muted", "what's my team been discussing this week" — without you copy-pasting, and without any cloud API.
Local & offline — reads the on-disk Teams cache. No MS Graph API, no network calls.
No credentials — nothing to log in to, no tokens, no permissions to grant.
Read-only & safe — the Teams files are only ever read/copied, never written, locked, or modified. It cannot corrupt your Teams data.
Token-economical — every tool returns compact, shaped output, never bulk dumps.
Zero-config — auto-discovers the local Teams database; just register and go.
⚠️ Windows & macOS (new Teams / WebView2), Node.js ≥ 22.5. Both use the same Chromium/WebView2 store, so the reader is identical; the local database is auto-discovered on each, or point
TEAMS_LEVELDB_DIRat it manually — see requirements. Not affiliated with or endorsed by Microsoft. It reads your own local data on your own machine.
Installation
npx -y zaungast fetches and runs the server, so registering it in your MCP client is the
whole install. No environment variables are needed in the common case — the local Teams
database is auto-discovered.
Claude Code
Normal case — the Teams database is auto-discovered, so no variables are needed:
claude mcp add zaungast -- npx -y zaungastAdd --scope user to make it available in every project. Verify with claude mcp list
(expect zaungast … ✓ Connected), then open a new session.
Only if auto-discovery fails or you have multiple profiles, set TEAMS_LEVELDB_DIR
explicitly (the -e flag goes before the --) — see
finding the Teams database folder:
claude mcp add zaungast \
-e TEAMS_LEVELDB_DIR="C:\Users\me\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe\LocalCache\Microsoft\MSTeams\EBWebView\WV2Profile_tfw\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" \
-- npx -y zaungastCodex
Add to ~/.codex/config.toml (or run codex mcp add zaungast -- npx -y zaungast):
[mcp_servers.zaungast]
command = "npx"
args = ["-y", "zaungast"]
# The Teams database is auto-discovered, so no path is needed. To set or override it,
# delete the "#" below and point it at your …indexeddb.leveldb folder:
# env = { TEAMS_LEVELDB_DIR = "/full/path/to/https_teams.microsoft.com_0.indexeddb.leveldb" }Claude Desktop / other clients
Add to your client's MCP config (claude_desktop_config.json, .mcp.json, …):
{
"mcpServers": {
"zaungast": { "command": "npx", "args": ["-y", "zaungast"] }
}
}If you want to set or override a variable, use this form instead:
{
"mcpServers": {
"zaungast": {
"command": "npx",
"args": ["-y", "zaungast"],
"env": {
"TEAMS_LEVELDB_DIR": "/full/path/to/https_teams.microsoft.com_0.indexeddb.leveldb"
}
}
}
}TEAMS_LEVELDB_DIR is optional — the database is auto-discovered. Set it only if discovery
fails or to pin a specific profile. From-source setup and other clients are covered in the
installation docs.
Related MCP server: Teams Messenger MCP App
Tools
Tool | What it does |
| Your Teams sidebar — newest conversations, or filter by kind/participant/title/time. |
| Browse one conversation's messages in story order (window / date-range / page back). |
| Read one channel reply-chain in full (root + all replies). |
| One message in full — complete untruncated body + reactions, by conversation + |
| Full-text search + filters (from, in, kind, |
| Calendar meetings & appointments (forward window by default); metadata-only, join-URLs never exposed. |
| Call history — 1:1/group calls with direction, duration, missed, and recording pointers. |
| Rank distinctive/trending topics over a window, vs your baseline, with an example each. |
| Resolve a name/nickname to a canonical person + handle, with contact stats. |
| Recovery tool: propose a field mapping when a Teams update changes the DB layout. |
Full reference: tools documentation.
Environment variables
All optional — zaungast works with no configuration. Pass them via your MCP client's env
block (as above).
Var | Default | Notes |
| auto-discovered | Absolute path to the |
|
| Refresh mode: |
| unset | Read a static copy of the database directly (offline analysis); skips discovery and live refresh. |
|
| Ingest engine: |
TEAMS_LEVELDB_DIR points at the folder ending in .indexeddb.leveldb (the one holding
CURRENT, MANIFEST-*, *.ldb/*.log) — not its parent IndexedDB directory:
# Windows
C:\Users\<you>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe\LocalCache\Microsoft\MSTeams\EBWebView\<profile>\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb
# macOS
/Users/<you>/Library/Containers/com.microsoft.teams2/Data/Library/Application Support/Microsoft/MSTeams/EBWebView/<profile>/IndexedDB/https_teams.microsoft.com_0.indexeddb.leveldb<profile> is usually WV2Profile_tfw. Use the full absolute path in JSON configs (e.g. Claude
Desktop) — environment placeholders like ~ or %LOCALAPPDATA% aren't expanded there.
Privacy & safety
Stays local — no network calls; reads data already on your machine and serves it to your local agent over stdio.
Cannot harm Teams — no code path writes to, locks, or memory-maps the Teams directory; only read-and-copy.
Images/files are URL-only — chat images live in Teams' cloud behind auth; zaungast notes that an attachment exists but never fetches it and never handles credentials.
More in the privacy & safety docs.
Documentation
Full documentation — tools reference, how it works, configuration, privacy, troubleshooting, and development — lives at https://zaungast.readthedocs.io/.
License
Apache 2.0 © Mikael Beyene. Not affiliated with or endorsed by Microsoft. "Microsoft Teams" is a trademark of Microsoft Corporation; this project only reads your own local data.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA Model Context Protocol server that bridges Microsoft Teams and MCP-compatible clients, enabling chat integration, message handling, and advanced search capabilities without REST API endpoints.Last updated1
- Flicense-qualityDmaintenanceA Model Context Protocol server that bridges Microsoft Teams with MCP-compatible clients (LLMs, agentic frameworks, CLI), enabling chat integration, message search, and event streaming without traditional REST API endpoints.Last updated
- Alicense-qualityAmaintenanceMCP server for Microsoft 365 via the Microsoft Graph API, providing read-only access to profile, calendar, email, Teams chats, OneDrive files, and meeting transcripts from any MCP client.Last updated192MIT
- AlicenseAqualityCmaintenanceA self-hosted, read-only Slack MCP server that runs locally and provides read-only access to Slack channels, messages, and users via the Slack Web API, with no third-party intermediary.Last updated7MIT
Related MCP Connectors
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mbe24/zaungast'
If you have feedback or need assistance with the MCP directory API, please join our Discord server