Entra Permissions MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Entra Permissions MCP Serversearch for application permissions containing 'User.Read'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Entra Permissions MCP Server
An MCP server that exposes this repo's Microsoft Entra ID / Microsoft Graph permissions data to AI agents (Claude Code, Claude Desktop, Cursor, …).
It serves the canonical permissions JSON — the same data the permissions/ React app bundles —
through MCP tools and resources.
Where the data comes from
Remote-first, local fallback. At startup the server fetches the three JSON datasets from the
public jsDelivr CDN, served from the dedicated public data store repo
mjendza/entra-id-permissions-mcp:
https://cdn.jsdelivr.net/gh/mjendza/entra-id-permissions-mcp@main/data/<file>.jsonThe data is refreshed by this repo's scrape.yaml pipeline,
which generates the JSON and pushes it to the store repo's data/ folder. Serving from the CDN
means a deployed/serverless MCP host needs no bundled data and pays no egress to host ~2 MB of
JSON — jsDelivr caches it globally. If the fetch fails (offline, CDN down, or remote disabled) the
server falls back to the local data/ files in this repo.
Prerequisite: the pipeline must have published the three
*.jsonfiles to the store repo'sdata/folder onmainat least once. Until then the server transparently uses the local fallback.
Related MCP server: MCP Microsoft Graph Server
Datasets
Source file | Records | Exposed as |
| 630 | Graph Application permissions (app roles) |
| 714 | Graph Delegated permissions (oauth2 scopes) |
| 3854 | Microsoft first-party apps + their app roles |
Tools
Tool | Purpose |
| Keyword search application permissions (Value/DisplayName/Description). |
| Keyword search delegated permissions; optional |
| Exact lookup by scope |
| Find first-party apps by display name or AppId (summary only). |
| Full record for one app (by |
| Find which Microsoft app exposes a given app role. |
Search tools return { totalMatches, returned, results } and accept an optional limit
(default 25, max 200) so large result sets stay bounded.
Resources
entra://graph/application-permissionsentra://graph/delegated-permissionsentra://microsoft-apps
Each returns the full raw dataset as application/json.
Build
cd mcp-server
npm install
npm run buildRun
stdio (local clients):
npm run start:stdio # node dist/stdio.jsStreamable HTTP (network / serverless hosting):
npm run start:http # node dist/http.js -> http://localhost:3000/mcpGET /health returns 200 {"status":"ok"}. The HTTP transport runs stateless (no session
id) which keeps serverless hosting simple; switch to session mode by supplying a
sessionIdGenerator in src/http.ts if you need server-initiated streams.
Config
ENTRA_DATA_BASE_URL— override the remote base URL (defaults to the jsDelivr CDN path above). Set to an empty string to disable remote fetching.ENTRA_DATA_LOCAL_ONLY— set to any value to skip the network entirely and read local files.ENTRA_DATA_DIR— override the local fallback directory (defaults to the repo'sdata/).PORT— HTTP port (default3000).
Register with a client
Claude Code (windows) from npm:
{
"mcpServers": {
"entra-permissions": {
"command": "cmd",
"args": ["/c", "entra-permissions-mcp"]
}
}
}Use with Claude Code (agents & commands)
The claude_code/ folder is a ready-made Claude Code workspace that
wires this MCP server together with the Microsoft Learn and Terraform MCP servers,
then layers subagents and slash commands on top so you can go from
plain-English intent to a permission table — or to ready-to-review Terraform —
without leaving the terminal.
Quick start
Launch Claude Code with claude_code/ as the working directory so it picks up
.mcp.json and .claude/:
cd claude_code
claudeApprove the MCP servers when prompted (or pre-approve them via
enabledMcpjsonServers in .claude/settings.local.json).
The MCP wiring (claude_code/.mcp.json)
Server | Transport | Purpose |
|
| This server — resolve Graph permission name → GUID + Role/Scope, look up first-party apps. |
| http | Ground |
| Docker | Terraform Registry / provider-docs tools. |
The
terraformserver needs Docker running. If you'd rather not use Docker, use theentra-sp-architect-simpleagent (below), which confirms provider syntax via themicrosoft-learnMCP instead.
Slash commands
# Resolve a capability to permission name(s) + GUID — look-up only, no files written
/ask-for-permission manage groups
# Generate Terraform for a service principal with the given Graph permissions
/create-entra-sp graph-reader User.Read.All Directory.Read.All/ask-for-permission hands off to the entra-permission-finder agent;
/create-entra-sp hands off to the entra-sp-architect agent.
Subagents
Agent | What it does | MCP tools used |
| Turns "read all users", "send mail as the user", etc. into the matching permission(s) as name + GUID + Application/Delegated. Read-only — never writes files or touches a tenant. |
|
| Resolves permission names to GUIDs, confirms |
|
| Same as above but no Docker / Terraform MCP — confirms provider syntax via |
|
Example: find a permission
/ask-for-permission manage groupsThe entra-permission-finder agent searches the entra-permissions MCP and
returns a table, least-privilege match first:
Permission (name) | GUID | Type | API | What it allows |
|
| Application (Role) | Graph | Read and write all groups |
|
| Application (Role) | Graph | Read all groups |
GUIDs above are illustrative — the agent returns the live values from the MCP and never invents a name or GUID.
Example: generate Terraform for a service principal
/create-entra-sp graph-reader User.Read.All Directory.Read.AllThe entra-sp-architect agent resolves each permission to its GUID + Role/Scope,
writes the .tf files under claude_code/terraform/, and emits one
resource_access block per permission, e.g.:
resource "azuread_application" "this" {
display_name = var.display_name
required_resource_access {
resource_app_id = "00000003-0000-0000-c000-000000000000" # Microsoft Graph
resource_access {
id = "df021288-bdef-4463-88db-98f22de89214" # User.Read.All
type = "Role"
}
resource_access {
id = "7ab1d382-f21e-4acd-a863-ba3e13f7da61" # Directory.Read.All
type = "Role"
}
}
}It then prints a name → GUID → Role/Scope resolution table and stops — you run
terraform init / plan / apply yourself. Admin consent is still required
after apply. See claude_code/README.md for full details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/mjendza/entra-id-permissions-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server