intune-assignment-checker-mcp
v0.4.0
Published
Read-only local MCP server for explaining Microsoft Intune assignments.
Readme
Intune Assignment Checker MCP
A local, read-only Model Context Protocol server for inspecting and explaining Microsoft Intune assignments through Microsoft Graph /beta.
This repository is the TypeScript port and MCP surface. The existing PowerShell product remains separate and is the behavioral reference for assignment resolution.
Explore the installation guide and security model at intuneassignmentchecker.ugurkoc.de/mcp.
Current implementation
The first delegated vertical slice is implemented:
- Local MCP transport over stdio.
- Interactive browser sign-in with delegated Microsoft Graph permissions.
- OS-protected persistent MSAL cache (Windows DPAPI, macOS Keychain, or Linux libsecret), with memory-only fallback if secure persistence is unavailable.
get_connection_status.search_policies.list_all_device_assignmentsfor direct All Devices policy and application targeting.list_all_user_assignmentsfor direct All Users policy and application targeting.list_unassigned_policiesfor policies and applications with no assignments.get_policy_assignments.- Strict Microsoft Graph
/betaURL construction and continuation validation. - Bounded calls, pages, execution time, response bytes, retries, and result sizes.
- Opaque, one-time, tenant-bound MCP cursors; raw Graph
@odata.nextLinkvalues never enter model context. - Complete page records and opaque continuation cursors in both model-visible text and typed
structuredContentfor client compatibility. - Assignment collections reconcile Graph's sometimes-stale
isAssignedflag; duplicate policy names require stable ID-based disambiguation. - Explicit partial-coverage and delegated-RBAC uncertainty reporting.
The one production app registration has been created, its public-client ID is embedded, and the package is available from npm. The code contains no second development registration. The embedded client ID also makes source builds testable without supplying a separate registration.
Architecture
AI client
-> local stdio MCP process
-> MSAL delegated sign-in in the user's browser
-> OS-protected local token cache
-> internally generated, read-only Microsoft Graph /beta requestsThere is no hosted MCP endpoint, Auth0 tenant, customer token database, service certificate, or server-side Graph token exchange.
Install from npm
Requirements: Node.js 20 or newer and a supported local stdio MCP client. The client launches the package on demand; users do not install it globally or create an Entra app registration, client secret, or certificate.
Claude Desktop
Open Settings → Developer → Edit Config and add:
{
"mcpServers": {
"intune-assignment-checker": {
"command": "npx",
"args": ["-y", "intune-assignment-checker-mcp@latest"]
}
}
}Restart Claude Desktop after saving the configuration.
Claude Code
Add the server at user scope so it is available in every project:
claude mcp add --transport stdio --scope user intune-assignment-checker -- npx -y intune-assignment-checker-mcp@latestRun claude mcp list or open /mcp inside Claude Code to verify the connection.
ChatGPT Desktop and Codex
The ChatGPT desktop app, Codex CLI, and the Codex IDE extension share MCP configuration on the same machine. Add the server with:
codex mcp add intune-assignment-checker -- npx -y intune-assignment-checker-mcp@latestThe equivalent ~/.codex/config.toml entry is:
[mcp_servers.intune-assignment-checker]
command = "npx"
args = ["-y", "intune-assignment-checker-mcp@latest"]Cursor
Add this server to Cursor's MCP configuration:
{
"mcpServers": {
"intune-assignment-checker": {
"command": "npx",
"args": ["-y", "intune-assignment-checker-mcp@latest"]
}
}
}VS Code
Add this server through MCP: Add Server or place the following in the
appropriate VS Code mcp.json file:
{
"servers": {
"intune-assignment-checker": {
"type": "stdio",
"command": "npx",
"args": ["-y", "intune-assignment-checker-mcp@latest"]
}
}
}First use
Ask the client an Intune assignment question. The first functional tool call opens Microsoft sign-in in the browser. After delegated consent, the MCP stores the token cache under the current OS user's protection and reuses it on later launches. Sign in or revoke the local cache explicitly with:
npx -y intune-assignment-checker-mcp@latest login
npx -y intune-assignment-checker-mcp@latest status
npx -y intune-assignment-checker-mcp@latest logoutChatGPT Web and Claude.ai cannot directly launch an npx process on the user's
machine. This local installation path targets their desktop clients and other
local stdio MCP hosts.
Local development
Requirements: Node.js 20 or newer. Linux secure persistence also requires a Secret Service implementation such as GNOME Keyring/libsecret.
npm install
npm run check
npm run buildThe production client ID is embedded. IAC_MCP_CLIENT_ID remains available only
as an explicit override for controlled testing:
export IAC_MCP_CLIENT_ID="your-test-public-client-id"Optionally pin guest or multi-tenant administrators to a specific tenant GUID:
export IAC_MCP_TENANT_ID="your-tenant-id"Sign in explicitly, or let the first functional tool open sign-in:
node dist/index.js login
node dist/index.js status
node dist/index.js logoutFor a headless session:
node dist/index.js login --device-codeSet IAC_MCP_AUTO_SIGN_IN=false if model-triggered tool calls must return auth_required instead of opening a browser.
Diagnostics
The server logs to stderr only; stdout stays reserved for MCP JSON-RPC framing.
Set IAC_MCP_LOG_LEVEL to debug, info (default), warn, or error. The
startup line includes the running version, and every tool result carries a
correlation ID that matches a stderr entry:
export IAC_MCP_LOG_LEVEL=debug
node dist/index.js --versionMCP client configuration during development
Build first, then point the client to the absolute local file:
{
"mcpServers": {
"intune-assignment-checker": {
"command": "node",
"args": ["/absolute/path/to/IntuneAssignmentChecker-MCP/dist/index.js"]
}
}
}The public npx configurations are documented in Install from npm.
The one Entra app registration
The standard path uses exactly one publisher-owned registration named Intune Assignment Checker MCP:
- Supported accounts: any organizational directory.
- Public/native client; no client secret or certificate.
- Delegated Graph permissions only.
- Loopback redirect URI:
http://localhost. - Authority:
organizations, withIAC_MCP_TENANT_IDoverride. - No exposed MCP API and no application Graph permissions.
The current tools request only:
DeviceManagementConfiguration.Read.AllDeviceManagementApps.Read.AllGroupMember.Read.All
Additional delegated permissions will be added to this same registration only when the tools that use them ship. CloudPC.Read.All remains optional and is not part of the current consent bundle.
The publisher-only setup script is idempotent, requires the intended publisher
tenant GUID, and supports -WhatIf:
./scripts/Register-IntuneAssignmentCheckerMcpApp.ps1 -TenantId '<publisher-tenant-guid>' -WhatIf
./scripts/Register-IntuneAssignmentCheckerMcpApp.ps1 -TenantId '<publisher-tenant-guid>'The script refuses an unexpected tenant, another API, or application permissions,
and always converges on the exact three current read-only delegated scopes. It
does not grant customer consent. The production registration was created and
read back through Microsoft Graph /beta; live delegated consent and tool calls
are verified separately before package publication.
Security and privacy boundaries
- Tokens never appear in tool arguments, tool results, stdout, or application logs.
- stdout is reserved for MCP JSON-RPC; diagnostics use stderr.
- No tool accepts a Graph URL or arbitrary Graph path.
- Graph redirects are rejected rather than followed.
- Policy, group, and filter names are untrusted data: control characters are stripped and lengths are bounded.
- Delegated Intune RBAC can silently narrow successful Graph results. Coverage reports this uncertainty; an empty result is not proof that the tenant has no matching object.
- Policy names, group names, filter rules, and other returned fields are sent by the MCP client to its configured model provider. Tokens and raw Graph payloads are not.
- Secure cache initialization never falls back to an unencrypted token file. If the OS keyring is unavailable, tokens remain in memory for that process only.
Because this is a shared multi-tenant public client, the publisher registration itself is security-critical. Its owners should use phishing-resistant MFA and privileged access controls, and changes to redirect URIs, permissions, or credentials should be monitored.
Supported policy categories
The first slice includes configuration policies, device configurations, compliance policies, mobile applications, and managed app configuration policies. Search uses client-side matching because Intune $filter/$search behavior is inconsistent across these collections.
The live verification tenant confirmed that these collections can return @odata.nextLink, assignment targets are polymorphic and include assignment-filter fields, empty value arrays are valid, and @odata.type is returned automatically but rejected when placed in $select.
Verification
npm run format:check
npm run lint
npm run typecheck
npm test
npm run build
npm auditThe tests cover URL and /beta enforcement, opaque cursor isolation, throttling, polymorphic targets, filter/group normalization, category contracts, and an in-memory MCP client/server exchange.
Automated PowerShell parity
The PowerShell module remains the behavioral reference, but synchronization is now enforced rather than assumed:
Tests/Parity/Export-McpParityFixtures.ps1in the PowerShell repository generates a deterministic, versioned Graphbetafixture.- PowerShell Pester tests fail when that committed fixture is stale.
npm run parity:syncvendors the fixture into this repository.- The TypeScript parity suite runs the same raw policies, polymorphic targets, filters, groups, app intents, and platform values through the MCP normalizer.
- Cross-repository CI fails until the TypeScript result matches the current PowerShell result.
Run the complete local handoff from this repository with:
npm run parity:sync
npm run parity:check
npm run check
npm run buildThe MCP workflow also checks the PowerShell main branch every day. In the
PowerShell GitHub repository, set the Actions variable
IAC_MCP_REPOSITORY=ugurkocde/IntuneAssignmentChecker-MCP after this repository
is published. If the MCP repository is private, also add an
IAC_MCP_REPOSITORY_TOKEN secret with read access. Until that remote exists and
the variable is configured, the PowerShell-side cross-repository job is safely
skipped; local parity and the PowerShell fixture-drift test remain active.
This automation detects and blocks behavioral drift. It deliberately does not translate arbitrary PowerShell into TypeScript. After a reviewed version change is released on GitHub, the npm publication is performed by the provenance-enabled workflow documented in RELEASING.md.

