PluginBench
MCP Server
Active
MIT

io.github.0xka13b/ms-calendar-mcp MCP Server

io.github.0xka13b/ms-calendar-mcp

What is the io.github.0xka13b/ms-calendar-mcp MCP server?

Microsoft Calendar (Outlook Calendar) MCP server for managing events via Microsoft Graph.

How to install io.github.0xka13b/ms-calendar-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • MICROSOFT_CLIENT_ID

    Entra ID application (client) ID for the public client app used to sign in. Run `npx -y ms-calendar-mcp login` once to cache a refresh token.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "ms-calendar-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "ms-calendar-mcp"
      ],
      "env": {
        "MICROSOFT_CLIENT_ID": "<YOUR_MICROSOFT_CLIENT_ID>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "ms-calendar-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "ms-calendar-mcp"
      ],
      "env": {
        "MICROSOFT_CLIENT_ID": "<YOUR_MICROSOFT_CLIENT_ID>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "ms-calendar-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "ms-calendar-mcp"
      ],
      "env": {
        "MICROSOFT_CLIENT_ID": "<YOUR_MICROSOFT_CLIENT_ID>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "ms-calendar-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ms-calendar-mcp"
      ],
      "env": {
        "MICROSOFT_CLIENT_ID": "<YOUR_MICROSOFT_CLIENT_ID>"
      }
    }
  }
}
Claude Code
claude mcp add ms-calendar-mcp --env MICROSOFT_CLIENT_ID=<YOUR_MICROSOFT_CLIENT_ID> -- npx -y ms-calendar-mcp

Related MCP servers

Microsoft Outlook (mail) MCP server — read, search, and send email through Microsoft Graph.

0
TypeScript
MIT
View repository →

Microsoft Contacts MCP server — read and manage your address book through Microsoft Graph.

0
TypeScript
MIT
View repository →

Microsoft OneDrive MCP server — browse, read, and manage files and folders through Microsoft Graph.

0
TypeScript
MIT
View repository →

Microsoft SharePoint MCP server — access sites, lists, and documents through Microsoft Graph.

0
TypeScript
MIT
View repository →