Sequential Thinking MCP Server
Dynamic problem-solving through sequential thought chains
Connect Claude Code to Microsoft Agent 365 MCP servers — giving Claude direct access to Outlook Mail, Calendar, Word, Excel, PowerPoint, Teams, SharePoint, OneDrive, Copilot Search, Knowledge, and User Profile data through the enterprise-grade MCP tooling gateway.
{
"mcpServers": {
"agent365-bridge": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Connect Claude Code to Microsoft Agent 365 MCP servers — giving Claude direct access to Outlook Mail, Calendar, Word, Excel, PowerPoint, Teams, SharePoint, OneDrive, Copilot Search, Knowledge, and User Profile data through the enterprise-grade MCP tooling gateway.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 48 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationNo known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
a self-hosted project management & Kanban solution + Instant shareable boards
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Agent365 Bridge and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Connect Claude Code to Microsoft Agent 365 MCP servers — giving Claude direct access to Outlook Mail, Calendar, Word, Excel, PowerPoint, Teams, SharePoint, OneDrive, Copilot Search, Knowledge, and User Profile data through the enterprise-grade MCP tooling gateway.
┌─────────────┐ stdio ┌──────────────────┐ HTTPS + Auth ┌─────────────────────────┐
│ Claude Code │ ◄──────────────► │ MCP Proxy Bridge │ ◄──────────────────► │ Agent 365 MCP Servers │
│ (CLI / IDE) │ MCP protocol │ (this project) │ StreamableHTTP │ (Mail, Calendar, Word, │
└─────────────┘ └──────────────────┘ │ Teams, SharePoint...) │
└─────────────────────────┘
The bridge runs as a local stdio MCP server that Claude Code connects to. When Claude calls a tool (e.g. createMessage, getEvents), the bridge authenticates with Azure Entra ID using delegated permissions and forwards the call to the appropriate Agent 365 MCP server — acting on behalf of the signed-in user.
Claude Desktop enforces a 5-second timeout on tools/list requests. Since discovering 14 Agent 365 servers takes ~20 seconds, the bridge uses a two-layer caching strategy to serve tools instantly:
sequenceDiagram
participant User
participant Login as npm run login
participant Disk as ~/.agent365-bridge/
participant Bridge as Bridge Process
participant Claude as Claude Desktop
Note over User,Login: One-time setup
User->>Login: npm run login
Login->>Login: Device code auth
Login->>Disk: auth-record.json
Login->>Login: Discover 14 servers (56 tools)
Login->>Disk: tools-cache.json
Note over Bridge,Claude: Every subsequent launch
Claude->>Bridge: initialize
Bridge->>Disk: Load tools-cache.json
Bridge-->>Claude: initialize response
Claude->>Bridge: tools/list
Bridge-->>Claude: 56 tools (instant, <1ms)
Note over Bridge: Discovery runs in background (~20s)
Claude->>Bridge: tools/call SearchMessages
Note over Bridge: Waits for live discovery if needed
Bridge-->>Claude: Email results
The bridge automatically fixes common MCP compatibility issues:
oneOf, allOf, and anyOf from tool schemas (which Anthropic API rejects), merging properties where possible.GetDocumentContent in both Word and Excel) and automatically namespaces them (e.g. GetDocumentContent_Word) to prevent collisions.While Microsoft provides a rich set of tools for building and managing AI agents, there is currently a "protocol gap" for 3rd-party coding agents like Claude Code:
✅ **Production-tested a