Cisco Duo MCP Server
Provides read-only access to Cisco Duo's identity/MFA administration API, allowing listing and inspection of users, enrolled MFA methods (phones, hardware and desktop tokens, WebAuthn/U2F credentials), groups, integrations, and authentication, administrator, and telephony logs.
Click on "Deploy 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., "@Cisco Duo MCP ServerList all Duo users and their enrolled devices"
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.
Cisco Duo MCP Server
MCP server for Cisco Duo's identity/MFA administration API - read-only visibility into users, their enrolled MFA methods, phones, hardware and desktop tokens, groups, integrations, and the authentication/administrator/telephony logs, for AI assistants and the WYRE Conduit gateway.
Duo has no machine-readable OpenAPI spec; every endpoint in this connector was manually verified against Duo's published docs (Admin API, Auth API) and cross-checked against Duo's own reference client, duo_client_python.
Authentication
Duo authenticates with a signed-request scheme, not OAuth2 and not a bearer token. This connector implements Duo Auth Signature v5 (HMAC-SHA512) - the current recommended method - not the legacy v2 (HMAC-SHA1) scheme.
Three credential fields are required:
Field | Description |
| Integration key - identifies the integration. Sent as the Basic-auth username. Not secret. |
| Secret key - the HMAC-SHA512 signing key. Bearer-equivalent for this integration's admin scope; never sent over the wire itself, never logged. |
| This account's Duo API hostname, e.g. |
Every request is signed fresh, per call, in src/client.ts's signV5Get(). The 7-line canonical string (date, method, host, path, sorted query params, SHA-512 body hash, SHA-512 signed-headers hash) is joined with \n and HMAC-SHA512-signed with skey; the hex signature is sent as Authorization: Basic base64(ikey:signature) alongside a Date header carrying the exact same RFC 2822 timestamp that was signed. This connector is GET-only, so the body hash is always the digest of the empty string, and no additional X-Duo-* signed headers are used, so the header hash is always the digest of the empty string too.
In gateway mode the three fields arrive per-request via X-Duo-Ikey / X-Duo-Skey / X-Duo-Api-Host headers, injected by the Conduit gateway. In local/stdio mode they're read once from DUO_IKEY / DUO_SKEY / DUO_API_HOST.
What the credential itself can do vs. what this connector calls. This connector's code is read-only by construction (see Scope, below), but that describes this codebase, not Duo's server-side enforcement. Duo Admin API integrations carry their own independently-configured permission grants (Grant Read Resource, Grant Write Resource, Grant Read Log, Grant Read Settings, Grant Write Settings, etc., set in the Duo Admin Panel when the integration is created) and Duo does enforce these server-side - an integration without Grant Write Resource gets a real authorization error from Duo itself on any write attempt, confirmed against Duo's docs and community reports of exactly that failure mode. This connector never exercises anything beyond read permissions, but the ikey/skey pair a customer supplies is only as narrowly scoped as the permissions they granted that integration in Duo - if a customer grants this integration Grant Write Resource (unnecessary for this connector), the credential itself would be capable of writes even though this connector's code never calls one. Recommend granting this integration only Grant Read Resource (and Grant Read Log if the log tools are wanted) in Duo's Admin Panel - least-privilege at the credential level, on top of this connector's own code-level restriction.
Defensive field-stripping: Duo's Integrations endpoints are known to echo secret-shaped fields in some read responses, and the API has no machine-readable schema to verify this exhaustively per integration type. Every response from every tool in this connector - not just Integrations - passes through stripSecretFields() before it ever reaches the model: any object key matching /secret|skey/i, at any depth, is dropped. This is a blanket safety net on top of, not instead of, the endpoint-level exclusions below.
Related MCP server: sn-mcp
Configuration
Env var | Description |
| Duo integration key. |
| Duo secret key (HMAC-SHA512 signing secret). |
| This account's Duo API hostname. |
|
|
|
|
| When set, the HTTP transport requires a valid |
|
|
Tools
All 22 tools are read-only and classified isAdmin: true in Conduit's VENDOR_TOOL_CONFIG regardless of verb - this is identity/MFA administration data (PII: phone numbers, email, device OS, and enrolled-factor details), sensitive even as a plain read.
Users
duo_list_users- list users, optionally filtered by exact username.duo_get_user- get full detail for a user.duo_list_user_groups- list the groups a user belongs to.duo_list_user_phones- list the phones enrolled to a user.duo_list_user_tokens- list the hardware tokens enrolled to a user.duo_list_user_webauthn_credentials- list a user's WebAuthn credentials.duo_list_user_u2f_tokens- list a user's legacy U2F security keys.
Phones
duo_list_phones- list phones, optionally filtered by number/extension.duo_get_phone- get full detail for a phone.
Tokens
duo_list_hardware_tokens- list hardware tokens (HOTP/TOTP/YubiKey).duo_get_hardware_token- get full detail for a hardware token.duo_list_desktop_tokens- list Duo Desktop tokens.duo_get_desktop_token- get full detail for a Duo Desktop token.
Groups
duo_list_groups- list groups.duo_get_group- get full detail for a group.duo_list_group_users- list the users belonging to a group.
Integrations (metadata only)
duo_list_integrations- list configured integrations.duo_get_integration- get full metadata for an integration.
Logs
duo_get_authentication_log- the authentication log (v2), time-filterable.duo_get_administrator_log- the administrator action log (v1).duo_get_telephony_log- the telephony (call/SMS credit) log (v2).
Auth
duo_check_credentials- validate credentials and Auth API connectivity. Side-effect-free; does not initiate any MFA transaction.
Scope
This is a deliberately narrow, read-only v1 surface, built for an identity/MFA administration product where the wrong endpoint is unusually consequential. src/client.ts implements exactly one HTTP verb function (doGet) - there is no doPost/doPut/doDelete anywhere in this codebase, so every exclusion below is structurally enforced, not just documented. src/__tests__/tool-set.test.ts pins the exact 22-tool set and asserts no tool name matches /bypass|delete|disassociate|deactivate|revoke|enroll/i.
Hard-excluded (credential-exposing) - never implemented:
GET /admin/v1/users/{user_id}/bypass_codes(get_user_bypass_codes) - returns live, usable MFA-bypass codes. Even as a read, this is the single most sensitive primitive in the API and is excluded alongside its generator, not treated as a safe list/detail read.POST /admin/v1/users/{user_id}/bypass_codes(add_user_bypass_codes) - generates bypass codes.
Hard-excluded (provisioning/mutation) - never implemented:
DELETE /admin/v1/users/{user_id},DELETE /admin/v1/phones/{phone_id},DELETE /admin/v1/tokens/{token_id},DELETE /admin/v1/desktoptokens/{desktoptoken_id},DELETE /admin/v1/groups/{group_id},DELETE /admin/v3/integrations/{integration_key}- all object deletes.DELETE /admin/v1/users/{user_id}/phones/{phone_id}(delete_user_phone),DELETE /admin/v1/users/{user_id}/tokens/{token_id}(delete_user_token) - disassociate operations.POST /admin/v1/users/{user_id}/phones(add_user_phone),POST /admin/v1/users/{user_id}/tokens(add_user_token) - associate operations.POST /admin/v1/users,POST /admin/v1/phones,POST /admin/v1/tokens(alladd_*_tokenvariants),POST /admin/v1/desktoptokens,POST /admin/v1/groups,POST /admin/v3/integrations- all object creates.POST/PUTupdate endpoints for every object type above (update_phone,update_token,resync_hotp_token,update_desktoptoken,activate_desktoptoken,update_group, integration config updates) and any policy-write endpoint (POST /admin/v1/settings).POST /auth/v2/preauth,POST /auth/v2/auth,POST /auth/v2/enroll,POST /auth/v2/enroll_status- Auth API endpoints that trigger a real user-facing MFA transaction or create an identity.
Out of v1 scope (not credential/provisioning, just not part of this connector's read surface - could be added later as a deliberate follow-up):
GET /auth/v2/ping- unauthenticated API liveness check, no admin-relevant data.GET /auth/v2/auth_status- a poll for a live/authtransaction's status; no standalone utility without the excluded/auth//preauthendpoints.GET /admin/v1/admins- the Duo administrator roster (distinct from end-user accounts). Not part of the task's requested tool categories (user/phone/token/group listing+detail, logs, integration metadata, auth-status checks).GET /admin/v1/billing/*,GET /admin/v1/info/summary,GET /admin/v1/settings- account summary/billing/settings reads.GET /admin/v1/users/directorysync- directory sync listing.Accounts API (MSP) - deprecated by Cisco as of 2026-06-11; subaccount management folded into the Admin API's billing endpoints. No separate surface exists to implement.
Device API (Trusted Endpoints device cache) - uses a separate
mkey/skeycredential pair scoped per management-system integration, a different credential model than the account-levelikey/skeythis connector is built around. Not implemented in v1; would need its own deliberate credential-shape decision if added.
They can be added as a follow-up if there's demand, after a deliberate scope decision - not by default.
Development
npm install
npm run build
npm test
npm run lint # tsc --noEmitDocker
docker build -t cisco-duo-mcp .
docker run -p 8080:8080 -e DUO_IKEY=... -e DUO_SKEY=... -e DUO_API_HOST=... cisco-duo-mcpThis server cannot be deployed
Maintenance
Related MCP Connectors
Safe, read-only Postgres and MySQL access for AI agents. Audit log + column-level controls.
- mcpOAuthcom.vibgrate
Query your team's drift, vulnerability, and upgrade data from any AI assistant. OAuth 2.1, 51 tools.
- OsboonOAuthcom.osboon
Read-only AI access to Osboon business card analytics, viewers, links, connections and contacts.
- HAVNOAuthapp.havnre
Read-only AI access to HAVN properties, leads, tasks, files, media, and analytics.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to interact with Mender IoT platform for device management, deployment monitoring, and fleet analysis through natural language commands. Provides read-only access to device status, deployment logs, releases, and system monitoring capabilities.2MIT
- FlicenseNot gradedqualityDmaintenanceProvides AI assistants with read access to ServiceNow instances to aid in building and debugging applications. It enables users to query tables, retrieve specific records, and inspect table schemas using standard ServiceNow encoded query strings.-
- AlicenseNot gradedqualityFmaintenanceProvides AI assistants with read-only access to Secureframe's compliance data, enabling querying of security controls, tests, users, vendors, and more across frameworks like SOC 2 and ISO 27001.8MIT
- AlicenseNot gradedqualityAmaintenanceEnables read-only file-management operations from AI assistants, including health checks, connection and folder listings, search, share-link resolution, metadata retrieval, and on-demand document reading.MIT