Install
$ agentstack add skill-jschuller-mcp-server-servicenow-servicenow-cmdb ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
ServiceNow CMDB Data Foundations
Explore CI classes, map dependencies, assess CMDB health, investigate data quality, and review CSDM service taxonomy. See references/cmdb-tables.md for CI classes, health KPIs, CSDM mappings, and encoded query syntax.
Workflows
1. Explore CI Class Hierarchy
Discover what CI classes exist and their structure.
Progress checklist (copy into your response):
- [ ] Get base CI table schema
- [ ] Sample populated CI classes
- [ ] Check class-specific fields
- [ ] Summarize class inventory
- Get the base CI table schema:
`` get_table_schema(table_name="cmdb_ci") ``
- List CIs by class to see what's populated:
`` list_ci(class_name="cmdb_ci_server", limit=10) list_ci(class_name="cmdb_ci_computer", limit=10) list_ci(class_name="cmdb_ci_app_server", limit=10) ``
- Check class-specific fields by getting the schema for a subclass:
`` get_table_schema(table_name="cmdb_ci_server") ``
- Summarize which classes have data and how many CIs each contains.
2. Map CI Dependencies
Trace upstream and downstream dependencies for a given CI.
Progress checklist:
- [ ] Find target CI
- [ ] Get CI details
- [ ] Get relationships
- [ ] Build dependency tree
- [ ] Present upstream/downstream map
- Find the target CI:
`` list_ci(class_name="cmdb_ci", query="nameLIKE", limit=10) ``
- Get the CI details:
`` get_ci(sys_id="") ``
- Get all relationships:
`` get_ci_relationships(sys_id="") ``
- For each related CI, optionally recurse one level deeper to build a dependency map.
- Present results as an upstream/downstream tree showing relationship types.
3. Assess CMDB Health
Query the CMDB Health Dashboard tables for data quality KPIs. Uses a validation loop: assess -> identify issues -> remediate -> re-assess.
Progress checklist:
- [ ] Query health audit results
- [ ] Check active health rules
- [ ] Get health scores by class
- [ ] Identify top failing rules
- [ ] Recommend remediation actions
- [ ] (Optional) Re-assess after fixes
- List recent health audit results:
`` list_records(table_name="cmdb_health_audit", limit=20, order_by="-sys_created_on") ``
- Check active health rules:
`` list_records(table_name="cmdb_health_rule", query="active=true", limit=20) ``
- Look at health scores by CI class:
`` list_records(table_name="cmdb_health_config", limit=20) ``
- Summarize: overall health score, top failing rules, classes with lowest scores.
- Recommend specific remediation actions for each failing rule.
- After remediation, re-query health scores to verify improvement.
4. Investigate Data Quality
Drill into data quality issues for specific CI classes. Uses a validation loop: profile -> identify gaps -> suggest fixes.
Progress checklist:
- [ ] Find CIs with missing mandatory fields
- [ ] Check for duplicates
- [ ] Check for orphaned CIs (no relationships)
- [ ] Query data quality rules
- [ ] Report issues by category with recommendations
- Find CIs with missing mandatory fields:
`` list_ci(class_name="cmdb_ci_server", query="ip_addressISEMPTY", limit=20) ``
- Find duplicate CIs (same name, different sys_id):
`` list_ci(class_name="cmdb_ci_server", query="nameLIKE", limit=20) ``
- Check for orphaned CIs (no relationships):
`` get_ci_relationships(sys_id="") ``
- Query data quality rules:
`` list_records(table_name="dl_definition", query="active=true", limit=20) ``
- Report: count of issues by category, affected CI classes, recommended actions.
5. CSDM Service Taxonomy
Explore the Common Service Data Model service hierarchy.
Progress checklist:
- [ ] List Business Services
- [ ] List Technical Services
- [ ] List Application Services
- [ ] Map service relationships
- [ ] Check service-to-offering mappings
- [ ] Present service taxonomy tree
- List Business Services:
`` list_ci(class_name="cmdb_ci_service_business", limit=20) ``
- List Technical Services:
`` list_ci(class_name="cmdb_ci_service_technical", limit=20) ``
- List Application Services:
`` list_ci(class_name="cmdb_ci_service", query="sys_class_nameLIKEservice", limit=20) ``
- For a specific service, map relationships to see which CIs support it:
`` get_ci_relationships(sys_id="") ``
- Check service-to-offering mappings:
`` list_records(table_name="service_offering", limit=20) ``
- Present the service taxonomy: business -> technical -> application services, with supporting CIs.
Tips
- Use
fieldsparameter onlist_ciandlist_recordsto limit returned data to relevant columns. - CMDB health tables may not exist on all instances — if a table returns 404, the Health Dashboard module may not be activated.
- CSDM class names vary by SN version. If a class returns no results, try
get_table_schemato confirm it exists. - See
references/cmdb-tables.mdfor encoded query syntax, CI class reference, and health KPI definitions.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jschuller
- Source: jschuller/mcp-server-servicenow
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.