Cisco IQ MCP Server
Provides read-only tools for querying Cisco IQ assets, contracts, lifecycle data, security advisories, and field notices, including affected-asset details.
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., "@Cisco IQ MCP ServerShow me all assets with an active contract and their end-of-life dates"
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 IQ MCP Server
A local Model Context Protocol (MCP) server that exposes Cisco IQ's Assets and Assessments REST APIs as MCP tools, so an AI assistant (e.g. Cursor, Claude Desktop) can query your entitled asset inventory, contracts, end-of-life lifecycle data, security advisories, and field notices directly.
Cisco IQ APIs are in beta (public preview). Endpoint paths, request/response schemas, authentication, pagination, and error handling may change between releases without maintaining backward compatibility. Do not use this server for production integrations.
What this server does
It wraps the 16 documented Cisco IQ operations (as of the 2026-07-24 beta release,
API version 0.1.0) as read-only MCP tools:
Resource | Tools |
Assets |
|
Contracts |
|
Security Advisories |
|
Field Notices |
|
All tools are GET-only; this server never performs write operations against Cisco IQ.
The server also transparently handles Cisco IQ's two-step auth flow: it exchanges your long-lived Personal Access Token (PAT) or Service Account Token (SAT) for a short-lived Bearer access token, caches it in memory, and refreshes it automatically before it expires — so tool calls never require you to think about tokens.
Related MCP server: Cisco Catalyst SD-WAN MCP Server
Prerequisites
Node.js 18 or later
A Cisco IQ account with permission to view the data you want to retrieve
A Personal Access Token (PAT) or Service Account Token (SAT) (see below)
Your Cisco IQ Account ID and Data Storage Region (
US,EMEA, orAPJC) — find both at Cisco IQ → Home → System Settings → Account Details
Generating a token
Personal Access Token (recommended for individual use)
Log in to Cisco IQ.
Click your name (top right) → User Settings.
Under Personal Token Management, click Generate Token.
Give it a name (e.g.
mcp-server), optionally a description, then click Generate Token.Copy the token immediately — Cisco IQ will not show it again.
Service Account Token (for shared/automation use, Administrators only)
Log in to Cisco IQ as an Administrator.
Home → System Settings → Identity and Access → Add User.
Select Service Account, name it, choose a role (Administrator or Viewer + resource groups), and save.
Copy the generated token immediately — it is not shown again.
See Cisco's own Token Security Best Practices below before storing it.
Setup
npm install
npm run buildCopy .env.example to .env and fill in your values (this file is gitignored and
must never be committed):
cp .env.example .env# Exactly one of these:
CISCO_IQ_PAT=your-personal-access-token
# CISCO_IQ_SAT=your-service-account-token
# Required for PAT auth; optional (but must match) for SAT auth
CISCO_IQ_ACCOUNT_ID=your-account-id
# Required: US, EMEA, or APJC
CISCO_IQ_REGION=APJCRun it directly to confirm it starts:
npm startYou should see a line on stderr like:
[cisco-iq-mcp-server] Ready (region=APJC, auth=PAT). Cisco IQ APIs are beta/public preview - do not use for production integrations.Using it from Cursor
Add an entry to your mcp.json (Cursor Settings → MCP, or ~/.cursor/mcp.json /
.cursor/mcp.json in a project). Do not hardcode the token value in this file if
it will be committed to a shared/synced location — prefer a local, gitignored config,
or reference an environment variable already set in your shell profile.
{
"mcpServers": {
"cisco-iq": {
"command": "node",
"args": ["/absolute/path/to/cisco-iq-mcp-server/dist/index.js"],
"env": {
"CISCO_IQ_PAT": "your-personal-access-token",
"CISCO_IQ_ACCOUNT_ID": "your-account-id",
"CISCO_IQ_REGION": "APJC"
}
}
}
}For local development without building, you can instead run npm run dev
(tsx src/index.ts) as the command/args.
Sharing this with colleagues
This repo contains no credentials — everyone who uses it generates and supplies their own PAT/SAT (see Generating a token above). Never share your own token with a colleague; give them this repo instead:
Clone it:
git clone https://github.com/rrizbaf/cisco-iq-mcp-server.gitFollow Setup to build it and create their own
.env(ormcp.jsonentry) with their own PAT/SAT, Account ID, and Region.Each person's tool calls run under their own Cisco IQ identity and permissions — access to specific assets/contracts is governed by Cisco IQ itself, not this server.
Example tool calls
List up to 5 assets with critical/high security advisories:
{ "name": "list_assets", "arguments": { "hasCriticalOrHighSecurityAdvisories": true, "max": 5 } }Get lifecycle milestones for a specific asset:
{ "name": "get_asset_lifecycle", "arguments": { "assetId": "85f9981e37312238b5c73020031a7b36", "milestoneType": "software" } }List security advisories affecting a given asset:
{ "name": "list_asset_security_advisories", "arguments": { "assetId": "85f9981e37312238b5c73020031a7b36", "impact": ["Critical", "High"] } }Pagination, filtering, and field selection
max(1-200, default 50) andoffsetcontrol page size/position on every collection tool.Collection tool results include a
paginationobject ({ next?, prev? }) taken from Cisco IQ'sLinkresponse header — pass thenextURL'soffset/maxback in for the next page. Cisco IQ does not return a total result count.Most list tools accept a
fieldsparameter (comma-separated) to request only the properties you need, which keeps responses small and LLM-context-friendly.Array filters (e.g.
productFamily,serialNumber) accept multiple values.
Rate limits and error handling
Cisco IQ enforces both per-user and per-account rate limits:
Scope | Requests/second | Requests/24h |
User (PAT/SAT) | 10 | 5,000 |
Cisco IQ Account | 25 | 25,000 |
This server automatically retries 502 Bad Gateway with bounded exponential backoff,
and 429 Too Many Requests by waiting for the shortest documented reset window (capped
at 30 seconds so a single tool call never blocks indefinitely). It does not retry
400, 401 (beyond one token refresh attempt), 403, 404, or 406 — those are
returned to the caller as a structured error (status, message, trackingId when
present) instead of being retried blindly.
Security notes
Credentials live only in environment variables, read once at startup and held in memory. They are never logged, written to disk, or included in error messages.
.envis gitignored; only.env.example(with empty placeholders) is committed.Short-lived access tokens are cached in memory only and refreshed automatically before they expire; they are never persisted.
Per Cisco's own guidance:
Store tokens in a secrets manager or other secure credential store.
Do not put tokens in URLs, screenshots, log files, source code, or shared documents.
Rotate tokens before they expire; revoke tokens immediately if exposed.
Use the least-privileged role and resource group access required for the integration (prefer a Viewer-role SAT scoped to specific resource groups for read-only automation).
Project structure
src/
config.ts # env-var loading & validation (no hardcoded secrets)
auth.ts # TokenManager: PAT/SAT -> short-lived Bearer token
client.ts # CiqClient: query building, pagination, retry/backoff
errors.ts # CiqApiError + error-body parsing
types.ts # TS interfaces for documented response schemas
tools/
shared.ts # common Zod schemas & MCP result helpers
assets.ts # 6 asset-related tools
contracts.ts # 2 contract-related tools
securityAdvisories.ts # 4 security-advisory tools
fieldNotices.ts # 4 field-notice tools
index.ts # MCP server entrypoint (stdio transport)License
MIT
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
- AlicenseAqualityCmaintenanceA community MCP server for Cisco Secure Access that exposes the Secure Access REST API to AI clients as a curated catalog of tools for Admin, Deployments, Investigate, Policies, and Reports.421Apache 2.0
- FlicenseNot gradedqualityDmaintenanceMCP server for Cisco Catalyst SD-WAN Manager (vManage) that exposes REST API as tools for AI assistants to query and manage SD-WAN fabric, including device management, monitoring, templates, and policies.8
- AlicenseAqualityCmaintenanceA read-only MCP server for InvGate Asset Management, enabling natural language queries for assets, people, computers, servers, software, and API health.12121MIT
- AlicenseNot gradedqualityBmaintenanceA read-only MCP server for Cisco Meraki Dashboard, enabling LLMs to discover devices, check health, troubleshoot, and generate reports via natural language.MIT
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
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/rrizbaf/cisco-iq-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server