cipp-mcp
This MCP server provides AI assistants with structured access to CIPP (CyberDrain Improved Partner Portal) for multi-tenant Microsoft 365 management across the following areas:
Tenant Management: List all managed tenants, get detailed tenant info, check standards drift, and get alignment percentages against templates.
User Management: List, create, edit, and disable users; reset passwords and MFA; revoke sessions; offboard users with configurable actions; run Business Email Compromise (BEC) checks; list MFA status, enrolled devices, and group memberships.
Group Management: List existing groups and create new security/mail-enabled groups.
Mailbox Management: List mailboxes by type, view mailbox permissions, set out-of-office auto-reply, and configure email forwarding.
Security: List Conditional Access policies, named locations, and enterprise applications (service principals).
Standards & Compliance: List and run standards checks, manage Standards Templates (list, create/update, delete), get Best Practice Analyser (BPA) results, check domain health (DMARC/DKIM/SPF), and report tenant drift and alignment.
License Management: List license assignments and usage per tenant, and list all CSP licenses across tenants.
Alerts & Auditing: Retrieve audit logs (with date range and type filtering) and list queued alerts.
GDAP Management: List available GDAP roles and pending GDAP relationship invites.
Scheduler: List and create scheduled tasks to automate CIPP functions.
Core / Diagnostics: Ping API connectivity, get CIPP version info, and retrieve application logs.
CIPP MCP Server
MCP (Model Context Protocol) server for CIPP — the CyberDrain Improved Partner Portal. Provides AI assistants with structured access to CIPP's M365 multi-tenant management capabilities.
Features
37 tools across 11 categories
Tenant, user, group, and mailbox management
Security: Conditional Access policies, named locations
Standards & compliance: BPA, domain health, drift detection
License reporting (per-tenant and CSP-wide)
Alerts, audit logs, and scheduled tasks
GDAP role and invite management
Stdio and HTTP transport modes
MCP Gateway compatible
Related MCP server: action1-mcp
Prerequisites
Node.js 18+
A running CIPP deployment
CIPP API Key (generated from CIPP Settings → API Client Management)
Installation
Via npm (once published)
npx cipp-mcpFrom source
git clone https://github.com/wyre-technology/cipp-mcp
cd cipp-mcp
npm install
npm run buildConfiguration
Set these environment variables (or copy .env.example to .env):
Variable | Required | Description |
| Yes | Your CIPP Azure Function App URL (e.g. |
| One of | Static Bearer token. Use this or the OAuth trio below. |
| One of | Entra tenant ID that owns the CIPP API-client app registration. |
| One of | OAuth client ID issued by CIPP's API Client Management page. |
| One of | OAuth client secret paired with |
| No | Override OAuth scope (default: |
| No | Override OAuth token endpoint (sovereign clouds only). |
| No |
|
| No | Port for HTTP mode (default: 8080) |
| No |
|
CIPP_BASE_URL must be the Azure Function App URL — the CIPP-API backend,
https://<function-app-name>.azurewebsites.net — not the Static Web App /
custom-domain UI URL (e.g. https://cipp.yourdomain.com). The SWA's built-in
auth intercepts bearer tokens and redirects them to its interactive login page,
so every API call fails. Find the Function App (named like cippXXXXX) in your
CIPP resource group in the Azure Portal.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"cipp": {
"command": "node",
"args": ["/path/to/cipp-mcp/dist/entry.js"],
"env": {
"CIPP_BASE_URL": "https://cippXXXXX.azurewebsites.net",
"CIPP_TENANT_ID": "your-entra-tenant-id",
"CIPP_CLIENT_ID": "your-client-id",
"CIPP_CLIENT_SECRET": "your-client-secret"
}
}
}
}Note:
CIPP_BASE_URLmust be the Azure Function App URL (.azurewebsites.net), not the frontend SWA URL (.azurestaticapps.netor your custom domain). The SWA enforces browser-based auth and will redirect all API requests to a Microsoft login page.
Tools
Category | Tools |
Tenants | list_tenants, get_tenant_details |
Users | list_users, create_user, edit_user, disable_user, reset_password, reset_mfa, revoke_sessions, offboard_user, bec_check, list_mfa_users, list_user_devices, list_user_groups |
Groups | list_groups, create_group |
Mailboxes | list_mailboxes, list_mailbox_permissions, set_out_of_office, set_email_forwarding |
Security | list_conditional_access_policies, list_named_locations |
Standards | list_standards, run_standards_check, list_bpa, list_domain_health |
Licenses | list_licenses, list_csp_licenses |
Alerts | list_audit_logs, list_alert_queue |
GDAP | list_gdap_roles, list_gdap_invites |
Scheduler | list_scheduled_items, add_scheduled_item |
Core | ping, get_version, list_logs |
CIPP version compatibility
Request bodies are shaped against CIPP's own Invoke-*.ps1 handlers and are
written to satisfy both current and older CIPP builds — where the two differ,
the server sends the form both accept. Three behaviours are worth knowing:
offboard_userreports queued, not completed. CIPP'sExecOffboardUserreturns HTTP 200 the instant the job is created; it never waits for or reports the offboarding result. Confirm the outcome in CIPP's Offboarding view before treating an account as offboarded. The tool refuses a call with no actions selected, since that would otherwise queue a job that succeeds while doing nothing.Some endpoints report failure under HTTP 200.
EditUser,AddScheduledItemandExecOffboardUserreturn error text inResultsrather than an error status. These tools parseResultsand returnstatus: "failed"; do not treat a 200 as success.Two parameters need a recent CIPP.
offboard_user'sDisableOneDriveSharingandset_out_of_office'stimezoneare ignored by older builds rather than erroring — so an offboarding that selects onlyDisableOneDriveSharingwill run no actions on an older CIPP.
Authentication Setup
CIPP's API Client Management page provisions an Entra ID app registration and returns an OAuth client ID + client secret (not a long-lived Bearer token). The server exchanges these for a short-lived access token on each request using the OAuth 2.0 client-credentials flow, and caches the token until just before its expiry.
In CIPP, go to Settings → CIPP Settings → Integrations → CIPP-API
Create a new API client
Copy the Client ID and Client Secret — you will not be able to retrieve the secret later
Configure the server with the Function App URL (see below):
CIPP_BASE_URL=https://cippXXXXX.azurewebsites.net CIPP_TENANT_ID=<your-entra-tenant-id> CIPP_CLIENT_ID=<client-id-from-cipp> CIPP_CLIENT_SECRET=<client-secret-from-cipp>
If you already have a static Bearer token (older CIPP deployments), set
CIPP_API_KEY instead and leave the OAuth variables unset. When both are
provided, CIPP_API_KEY wins.
Finding your Function App URL
CIPP runs as an Azure Static Web App (SWA) backed by an Azure Function App.
The SWA URL (your custom domain or *.azurestaticapps.net) enforces browser-only
auth and cannot be used as CIPP_BASE_URL. Use the Function App URL instead.
Self-hosted CIPP: Find the Function App in the Azure portal (look for an App Service
with Kind: functionapp in the same resource group as your SWA), or run:
az staticwebapp show --name <your-swa-name> --resource-group <rg> \
--query "linkedBackends[0].backendResourceId" -o tsvCIPP-sponsored hosting: Contact the CIPP team for your instance's Function App URL — it is not the same as the URL shown in your browser.
IP Allowlist
CIPP validates each API client against an IPRange field stored in Azure Table Storage.
If your server's public IP is not in this list, you will receive:
Access to this CIPP API endpoint is not allowed, the API Client does not have the required permission
Self-hosted: Add your IP via the CIPP UI (Settings → API Client Management) or
directly in the ApiClients table of your CIPP storage account.
CIPP-sponsored hosting: Ask the CIPP team to add your server's public IP to your API client's allowed range.
License
Apache-2.0 — see LICENSE
Contributing
Issues and PRs welcome. This server is tracked against wyre-technology/msp-claude-plugins#24.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAn MCP server for Datto BCDR (Business Continuity and Disaster Recovery), enabling management of backup jobs, restore points, and disaster recovery operations through Datto's API.Last updatedApache 2.0
- AlicenseAqualityAmaintenanceAn MCP server for Action1, a cloud-native RMM platform, enabling remote monitoring, patch management, and endpoint management through Action1's API.Last updated62Apache 2.0
- AlicenseAqualityAmaintenanceAn MCP server for SuperOps PSA/RMM, enabling MSPs to manage tickets, assets, clients, and field technician operations through SuperOps's API.Last updated212Apache 2.0
- Alicense-qualityBmaintenanceAn MCP server for Blackpoint Cyber MDR platform, enabling management of security monitoring, threat detection, and incident response through Blackpoint's API.Last updatedApache 2.0
Related MCP Connectors
MCP Server for agents to onboard, pay, and provision services autonomously with InFlow
MCP server for Appcircle mobile CI/CD platform.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wyre-technology/cipp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server