adobe-admin-console-mcp
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., "@adobe-admin-console-mcpassign Acrobat Pro license to jane@example.com"
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.
adobe-admin-console-mcp
English | 中文
Adobe Admin Console MCP server for Claude — exposes Adobe's User Management API (UMAPI) as MCP tools, focused on Acrobat / PDF license (product profile) assignment for Enterprise organizations.
Tech stack: Python 3.12 + uv + FastMCP (Starlette/uvicorn)
关联需求:PRD-15546(Onboarding step 16,Acrobat / PDF license assignment)。完整调研见 vendor-mcp-template/prd/AdobeAdminConsole.md。
Quick Start
cd adobe-admin-console-mcp
uv sync
# stdio mode (for Claude Desktop / CLI), single shared credential set from env
ADOBE_CLIENT_ID=xxxx ADOBE_CLIENT_SECRET=xxxx ADOBE_ORG_ID=xxxx@AdobeOrg uv run adobe-mcpRelated MCP server: N-central MCP Server
Authentication
This service is stateless: it never stores or persists Adobe credentials. Credentials are
either supplied once via environment variables (local dev, AUTH_MODE=env), or per-request via
HTTP headers (AUTH_MODE=gateway, production).
Adobe uses OAuth Server-to-Server (JWT/Service Account auth is deprecated). On every tool
call, this service exchanges the caller's client_id + client_secret for a short-lived Adobe
IMS access_token (~24h TTL) and uses it immediately — the token is not cached across
requests, even though Adobe's own docs suggest doing so, in order to fully comply with the
"no persisted credentials" requirement. This adds one extra IMS round trip per call.
Gateway mode HTTP headers (AUTH_MODE=gateway)
Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
| string | 必填 | 无 | 无 | Adobe Developer Console Project 的 Client ID,用于换取 access_token 及作为 |
|
| string | 必填 | 无 | 无 | 对应的 Client Secret,仅用于本次请求内换取 access_token,不持久化、不写日志 |
|
| string | 必填 | 无 | 无 | Adobe 组织 ID(Enterprise 租户标识) |
|
Missing any of the three headers on a /mcp request returns 401 with a required_headers list.
Env mode variables (AUTH_MODE=env, local dev only)
Variable | Default | Description |
| — | Adobe Developer Console Project Client ID |
| — | Adobe Developer Console Project Client Secret |
| — | Adobe organization ID, e.g. |
|
| UMAPI base URL |
|
|
|
|
|
|
|
| HTTP server port |
|
| HTTP server bind address |
Get credentials: create a Project with User Management API enabled in the Adobe Developer Console (Enterprise organizations only — this API is not available for Teams / Education / individual Adobe IDs).
Claude Desktop Setup
{
"mcpServers": {
"adobe-admin-console": {
"command": "uv",
"args": ["run", "--directory", "/path/to/adobe-admin-console-mcp", "adobe-mcp"],
"env": {
"ADOBE_CLIENT_ID": "xxxx",
"ADOBE_CLIENT_SECRET": "xxxx",
"ADOBE_ORG_ID": "xxxx@AdobeOrg"
}
}
}
}Transport Modes
stdio (Claude Desktop / CLI)
ADOBE_CLIENT_ID=xxxx ADOBE_CLIENT_SECRET=xxxx ADOBE_ORG_ID=xxxx@AdobeOrg uv run adobe-mcpHTTP — single-tenant (env mode)
ADOBE_CLIENT_ID=xxxx ADOBE_CLIENT_SECRET=xxxx ADOBE_ORG_ID=xxxx@AdobeOrg \
MCP_TRANSPORT=http AUTH_MODE=env uv run adobe-mcp
curl http://localhost:8080/healthHTTP — gateway / multi-tenant (production)
MCP_TRANSPORT=http AUTH_MODE=gateway uv run adobe-mcpTool List
Base URL: https://usermanagement.adobe.io/v2/usermanagement
Tool | Description | Parameters |
| 列出组织下的用户(分页) |
|
| 获取指定用户详情(含当前产品/群组归属) |
|
| 列出可分配的产品档案(如 Acrobat Pro / Standard),客户端按 |
|
| 将用户加入指定 Product Profile,完成许可证分配 |
|
| 将用户从指定 Product Profile 移除,回收许可证 |
|
Rate limits (enforced by Adobe, not this service — expect 429 + Retry-After if exceeded):
Endpoint category | Per-client | Global |
List / get users | 25 req/min | 100 req/min |
List groups / product profiles | 5 req/min | 100 req/min |
Assign / remove license (action) | 10 req/min | 100 req/min |
Test Examples
tools/list (gateway mode)
curl -X POST http://localhost:8080/mcp \
-H "x-adobe-client-id: your_client_id" \
-H "x-adobe-client-secret: your_client_secret" \
-H "x-adobe-org-id: 1234567890ABCDEF@AdobeOrg" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'tools/call — assign an Acrobat license
curl -X POST http://localhost:8080/mcp \
-H "x-adobe-client-id: your_client_id" \
-H "x-adobe-client-secret: your_client_secret" \
-H "x-adobe-org-id: 1234567890ABCDEF@AdobeOrg" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "adobe_assign_license",
"arguments": {"email": "user@example.com", "product_profile": "Acrobat Pro DC - Enterprise"}
}
}'Missing headers → 401
curl -i -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
# HTTP/1.1 401 Unauthorized
# {"error":"Missing credentials","required_headers":["x-adobe-client-id","x-adobe-client-secret","x-adobe-org-id"]}API Reference
Known Limitations
No dedicated "list product profiles" endpoint —
adobe_list_product_profilescalls the generic groups endpoint and filters client-side.No official Adobe sandbox for UMAPI — it requires a real Enterprise organization with at least one product profile to test against (Teams/Education/individual accounts cannot enable this API).
Token exchange happens on every tool call (no caching), which adds latency but keeps the service fully stateless per the SOP requirement.
This server cannot be installed
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-qualityBmaintenanceThe first full-featured MCP server for Adobe Experience Platform: 29 tools across schemas, datasets, profiles, segments, query service, and GDPR/CCPA privacy operations. Extends Adobe's read-only beta with production-grade write operations.Last updated31Apache 2.0
- AlicenseBqualityCmaintenanceExposes N-able N-central REST API as MCP tools for managing devices, organizations, users, and more, with support for read-only, write, and full write modes.Last updated825MIT
- Alicense-qualityDmaintenanceExposes the Google AdMob API as MCP tools for managing AdMob accounts, generating network and mediation reports, and listing apps and ad units.Last updated542Apache 2.0
- Flicense-qualityCmaintenanceEnables Adobe Experience Platform and AEM content operations through a shared tool registry, exposing health checks, fragment search, sandbox management, dataset queries, and content fragment fetching via MCP and web interfaces.Last updated
Related MCP Connectors
34 production API tools over one hosted MCP endpoint.
Provide seamless access to Appfolio Property Manager Reporting API through a standardized MCP serv…
APIs.guru MCP — keyless directory of 2,500+ public APIs and their OpenAPI specs.
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/MSPbotsAI/adobe-admin-console-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server