> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.itential.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.itential.com/_mcp/server.

# Manage executable services

> View, update, and delete executable services as your automation requirements change.

After you create executable services, you can view, update, and delete them as your automation requirements change.

## View executable services

You can view all executable services or get details about a specific service.

### View all executable services

**Syntax:**

```bash
iagctl get service executable
```

### View details of a specific executable service

**Syntax:**

```bash
iagctl describe service executable <service-name>
```

**Example:**

```bash
iagctl describe service executable simple-executable
```

This command displays the service configuration, including:

* Executable object reference
* Repository name
* Working directory
* Filename
* Argument format
* Description (if configured)

## Delete an executable service

You can delete an executable service when you no longer need it.

Deleting a service does not delete the executable object it references or the repository that contains the script.

**Syntax:**

```bash
iagctl delete service executable <service-name>
```

**Example:**

```bash
iagctl delete service executable simple-executable
```