> For the complete documentation index, see [llms.txt](https://docs.orakl.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.orakl.network/node-operators-guide/cli/service.md).

# Service

The Orakl Network offers several solutions, and each of them has its own specific configuration (e.g. listener setting). Service configuration in the **Orakl Network CLI**, allows to define an arbitrary services that can be associated with higher level solution configuration.

The **Orakl Network CLI** provides commands to

* [List Services](#list-all-services)
* [Insert New Service](#insert-new-service)
* [Remove Service Specified By `id`](#remove-service-specified-by-id)

### List all services

To list all serviced registered in the Orakl Network state, run the command below.

```sh
orakl-cli service list
```

The example output after listing all services can be seen in the listing below. In this case, there are three services: `VRF`, `DATA_FEED` and `REQUEST_RESPONSE`.

```json
[
  { "id": 1, "name": "VRF" },
  { "id": 2, "name": "DATA_FEED" },
  { "id": 3, "name": "REQUEST_RESPONSE" }
]
```

### Insert New Service

A new service can be registered to the Orakl Network state with `service insert` command.

```sh
orakl-cli service insert \
    --name ${name}
```

* example

```sh
orakl-cli service insert --name VRF
```

### Remove Service Specified By `id`

Services that are not associated with any other configuration can be deleted given the service `id`.

```sh
orakl-cli service remove \
    --id ${id}
```

* example

```sh
orakl-cli service remove --id 15
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.orakl.network/node-operators-guide/cli/service.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
