Superglue tools for ServiceNow: incidents, changes, users, assets/CMDB, service catalog, and incident history.
Beta: These tools are ready to use but still in testing. You may need to test them locally in your environment before deploying to production.
Use the Download Config or Copy Config buttons in the table below (placeholders for now). Save/paste the JSON in your project.
Create an API key in ServiceNow from the System Security > API Keys section. Add SERVICENOW_INSTANCE_URL and SERVICENOW_API_KEY to your environment variables.
npm install @superglue/client
The SDK executes the JSON workflow locally with your env credentials; no extra API key UI needed.
The SDK executes the downloaded JSON workflow locally using your environment's ServiceNow API key.
import { SuperglueClient } from "@superglue/client";
import config from "./servicenow_ticket_create.json"; // or paste JSON string
const client = new SuperglueClient();
async function run() {
const result = await client.run(config, {
env: {
SERVICENOW_INSTANCE_URL: process.env.SERVICENOW_INSTANCE_URL!,
SERVICENOW_API_KEY: process.env.SERVICENOW_API_KEY!,
SUPERGLUE_REDIRECT_URI: process.env.SUPERGLUE_REDIRECT_URI || "https://app.superglue.cloud/api/auth/callback"
}
});
console.log(JSON.stringify(result, null, 2));
}
run();
| Tool | Actions |
|---|---|
![]() servicenow_ticket_createCreate a new incident ticket with priority, description, and assignee. 👥 1,280 users
|
|
![]() servicenow_ticket_updateUpdate incident status, priority, or other fields. 👥 1,245 users
|
|
![]() servicenow_ticket_listList incidents based on query parameters and filters. 👥 1,215 users
|
|
![]() servicenow_user_lookupLook up user or employee information by ID or email. 👥 1,185 users
|
|
![]() servicenow_asset_lookupRetrieve configuration item (CI) details from CMDB. 👥 1,150 users
|
|
![]() servicenow_change_requestCreate new change requests or retrieve existing ones. 👥 1,120 users
|
|
![]() servicenow_service_catalogSearch and retrieve service catalog items and categories. 👥 1,095 users
|
|
![]() servicenow_incident_historyRetrieve incident history, comments, and audit trail. 👥 1,060 users
|
|