Skip to content
VS Code

Minerva MCP — Microsoft 365 & Azure for VS Code

io.github.houssemmak/minerva-mcp

Microsoft 365 & Azure admin: Graph, ARM, and the PowerShell cmdlets Graph does not expose.

client:VS Code transport:stdio runtime:npm

Install Minerva MCP — Microsoft 365 & Azure in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "azure-tenant-id",
      "description": "AZURE_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-client-id",
      "description": "AZURE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-client-secret",
      "description": "AZURE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "minerva-sharepoint-url",
      "description": "MINERVA_SHAREPOINT_URL",
      "password": true
    }
  ],
  "servers": {
    "minerva-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "minerva-mcp"
      ],
      "env": {
        "AZURE_TENANT_ID": "${input:azure-tenant-id}",
        "AZURE_CLIENT_ID": "${input:azure-client-id}",
        "AZURE_CLIENT_SECRET": "${input:azure-client-secret}",
        "MINERVA_SHAREPOINT_URL": "${input:minerva-sharepoint-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Minerva MCP — Microsoft 365 & Azure in other clients