AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Servicenow Cmdb

skill-jschuller-mcp-server-servicenow-servicenow-cmdb · by jschuller

Exploring CMDB configuration items, CI class hierarchy, relationships, health metrics, data quality, and CSDM compliance. Use when the user mentions CMDB, configuration items, CIs, CI classes, dependencies, relationships, CMDB health, data quality, duplicates, orphaned CIs, CSDM, service taxonomy, Data Foundations certification, staleness, compliance scores, or \"show me what depends on X.\

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-jschuller-mcp-server-servicenow-servicenow-cmdb

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jschuller-mcp-server-servicenow-servicenow-cmdb)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Servicenow Cmdb? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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
  1. Get the base CI table schema:

`` get_table_schema(table_name="cmdb_ci") ``

  1. 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) ``

  1. Check class-specific fields by getting the schema for a subclass:

`` get_table_schema(table_name="cmdb_ci_server") ``

  1. 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
  1. Find the target CI:

`` list_ci(class_name="cmdb_ci", query="nameLIKE", limit=10) ``

  1. Get the CI details:

`` get_ci(sys_id="") ``

  1. Get all relationships:

`` get_ci_relationships(sys_id="") ``

  1. For each related CI, optionally recurse one level deeper to build a dependency map.
  2. 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
  1. List recent health audit results:

`` list_records(table_name="cmdb_health_audit", limit=20, order_by="-sys_created_on") ``

  1. Check active health rules:

`` list_records(table_name="cmdb_health_rule", query="active=true", limit=20) ``

  1. Look at health scores by CI class:

`` list_records(table_name="cmdb_health_config", limit=20) ``

  1. Summarize: overall health score, top failing rules, classes with lowest scores.
  2. Recommend specific remediation actions for each failing rule.
  3. 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
  1. Find CIs with missing mandatory fields:

`` list_ci(class_name="cmdb_ci_server", query="ip_addressISEMPTY", limit=20) ``

  1. Find duplicate CIs (same name, different sys_id):

`` list_ci(class_name="cmdb_ci_server", query="nameLIKE", limit=20) ``

  1. Check for orphaned CIs (no relationships):

`` get_ci_relationships(sys_id="") ``

  1. Query data quality rules:

`` list_records(table_name="dl_definition", query="active=true", limit=20) ``

  1. 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
  1. List Business Services:

`` list_ci(class_name="cmdb_ci_service_business", limit=20) ``

  1. List Technical Services:

`` list_ci(class_name="cmdb_ci_service_technical", limit=20) ``

  1. List Application Services:

`` list_ci(class_name="cmdb_ci_service", query="sys_class_nameLIKEservice", limit=20) ``

  1. For a specific service, map relationships to see which CIs support it:

`` get_ci_relationships(sys_id="") ``

  1. Check service-to-offering mappings:

`` list_records(table_name="service_offering", limit=20) ``

  1. Present the service taxonomy: business -> technical -> application services, with supporting CIs.

Tips

  • Use fields parameter on list_ci and list_records to 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_schema to confirm it exists.
  • See references/cmdb-tables.md for 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.