← Back to Plugins
MCP Server MCP

Microsoft 365 Admin

github By github 👁 1 views ▲ 0 votes

Microsoft 365 administration via Graph API application permissions (read-only by default).

Homepage Verified source GitHub

Install

npx -y @okapi-ca/[email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "@okapi-ca/ms-365-admin-mcp-server",
      "version": "0.6.3",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "Azure AD tenant ID (specific GUID, not 'common').",
          "isRequired": true,
          "name": "MS365_ADMIN_MCP_TENANT_ID"
        },
        {
          "description": "App registration client ID with the required application permissions.",
          "isRequired": true,
          "name": "MS365_ADMIN_MCP_CLIENT_ID"
        },
        {
          "description": "App registration client secret. Prefer Azure Key Vault via MS365_ADMIN_MCP_KEYVAULT_URL for production.",
          "isRequired": true,
          "isSecret": true,
          "name": "MS365_ADMIN_MCP_CLIENT_SECRET"
        },
        {
          "description": "Optional Azure Key Vault URL. When set, secrets are pulled from the vault and override the env-var values above.",
          "name": "MS365_ADMIN_MCP_KEYVAULT_URL"
        },
        {
          "description": "Cloud environment: 'global' (default) or 'china' (21Vianet).",
          "name": "MS365_ADMIN_MCP_CLOUD_TYPE"
        },
        {
          "description": "Cap on the $top query parameter to limit result size.",
          "name": "MS365_ADMIN_MCP_MAX_TOP"
        },
        {
          "description": "Set to 'true' or '1' to force read-only mode (default behavior; mutations require --allow-writes).",
          "name": "READ_ONLY"
        },
        {
          "description": "Regex to filter the catalog of available tools.",
          "name": "ENABLED_TOOLS"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...