AgentSkillsCN

integration-servicenow

通过 AgenCo 可用的 ServiceNow 操作

SKILL.md
--- frontmatter
name: integration-servicenow
description: "ServiceNow actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

ServiceNow

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
list_incidentsRetrieves IT incidents with status information
get_incidentFetches incident details and notes
create_incidentOpens new IT incidents
update_incidentModifies incident status or assignment
list_change_requestsGets change request records
create_change_requestOpens new change requests
list_usersRetrieves user accounts
get_current_userGets authenticated user info
list_catalog_itemsRetrieves service catalog items

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["servicenow list incidents"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["servicenow list incidents"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"servicenow_list_incidents","input":{...}}'

If ServiceNow is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.