adobe-admin-console-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AUTH_MODE | No | Authentication mode: 'env' or 'gateway' | gateway |
| ADOBE_ORG_ID | No | Adobe organization ID, e.g. 1234567890ABCDEF@AdobeOrg | |
| MCP_HTTP_HOST | No | HTTP server bind address | 0.0.0.0 |
| MCP_HTTP_PORT | No | HTTP server port | 8080 |
| MCP_TRANSPORT | No | Transport: 'stdio' or 'http' | stdio |
| ADOBE_BASE_URL | No | UMAPI base URL | https://usermanagement.adobe.io/v2/usermanagement |
| ADOBE_CLIENT_ID | No | Adobe Developer Console Project Client ID | |
| ADOBE_CLIENT_SECRET | No | Adobe Developer Console Project Client Secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| adobe_list_usersA | List users in the Adobe organization. |
| adobe_get_userA | Get a single user's details, including current group/product profile memberships. |
| adobe_list_product_profilesA | List product profiles available for license assignment (e.g. Acrobat Pro/Standard). |
| adobe_assign_licenseA | Assign a license by adding a user to a product profile (e.g. an Acrobat Pro profile). |
| adobe_remove_licenseA | Revoke a license by removing a user from a product profile. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: listing users, getting user details, listing product profiles, assigning licenses, and removing licenses. There is no overlap or ambiguity in their intended functions.
All tool names follow a consistent 'adobe_' prefix with a verb_noun pattern: list_users, get_user, list_product_profiles, assign_license, remove_license. The naming is uniform and predictable.
With 5 tools, the server is well-scoped for its purpose of managing Adobe admin console users and licenses. Each tool serves a necessary function, and the count is within the ideal 3-15 range.
The tool set covers the core license management lifecycle: read users, read profiles, assign and revoke licenses. Minor gaps exist such as no user creation or deletion, but these may be outside the server's intended scope, so the coverage is nearly complete.