filesystem vs outlook-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | outlook-mcp by XenoXilus | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | CommunicationProductivityCloud Storage |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
outlook-mcp · Summary
MCP server for Microsoft Outlook enabling AI assistants to access email, calendar, and SharePoint via Microsoft Graph API.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
outlook-mcp · Use cases
- Email management and automation
- Calendar scheduling and meeting management
- SharePoint document processing and analysis
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
outlook-mcp · Install
Installation
Installing as DXT Extension
For Claude Desktop users, DXT extensions provide the simplest installation experience.
- Download
outlook-mcp.dxtfrom the [Releases page](https://github.com/XenoXilus/outlook-mcp/releases) - In Claude Desktop, go to **Settings** → **Extensions**
- Click **Install from file** and select the
.dxtfile - Enter your Azure Client ID, Tenant ID, and optional download directory when prompted
Using with CLI Tools
For CLI-based MCP clients, configure the server directly:
{
"outlook-mcp": {
"command": "node",
"args": ["/absolute/path/to/outlook-mcp/server/index.js"],
"env": {
"AZURE_CLIENT_ID": "your-azure-client-id",
"AZURE_TENANT_ID": "your-azure-tenant-id",
"MCP_OUTLOOK_WORK_DIR": "/optional/download/directory"
}
}
}