Loading...
Loading...
Service Now integration. Manage Incidents, Problems, Tasks, Users, Groups. Use when the user wants to interact with Service Now data.
npx skill4agent add membranedev/application-skills servicenowmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search servicenow --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Incidents | list-incidents | Retrieve a list of incidents from ServiceNow with optional filtering and pagination |
| List Users | list-users | Retrieve a list of users from ServiceNow |
| List Tasks | list-tasks | Retrieve a list of tasks from ServiceNow (base task table) |
| List Change Requests | list-change-requests | Retrieve a list of change requests from ServiceNow |
| List Problems | list-problems | Retrieve a list of problems from ServiceNow |
| List Configuration Items | list-configuration-items | Retrieve a list of configuration items (CIs) from the CMDB |
| List Knowledge Articles | list-knowledge-articles | Retrieve a list of knowledge base articles from ServiceNow |
| List Catalog Items | list-catalog-items | Retrieve a list of service catalog items from ServiceNow |
| List Groups | list-groups | Retrieve a list of groups from ServiceNow |
| Get Incident | get-incident | Retrieve a single incident by its sys_id |
| Get User | get-user | Retrieve a single user by their sys_id |
| Get Task | get-task | Retrieve a single task by its sys_id |
| Get Change Request | get-change-request | Retrieve a single change request by its sys_id |
| Get Problem | get-problem | Retrieve a single problem by its sys_id |
| Get Configuration Item | get-configuration-item | Retrieve a single configuration item by its sys_id |
| Get Knowledge Article | get-knowledge-article | Retrieve a single knowledge base article by its sys_id |
| Create Incident | create-incident | Create a new incident in ServiceNow |
| Create Change Request | create-change-request | Create a new change request in ServiceNow |
| Create Problem | create-problem | Create a new problem in ServiceNow |
| Update Incident | update-incident | Update an existing incident in ServiceNow |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY