> ## Documentation Index
> Fetch the complete documentation index at: https://ekso.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Process

> MCP tools for querying process definitions and their workflow transitions.

## get\_process\_list

Get all processes in the system with their fields and workflow (status) transitions.

| Property      |     |
| ------------- | --- |
| **Read-only** | Yes |

### Parameters

None.

### Returns

A list of `ProcessDto` objects containing:

* `processId` — unique process identifier (use with [`create_item`](/mcp-tools/item#create_item))
* `name`, `description` — process identity
* `fields` — ordered list of fields with ID, name, order, and required flag
* `workflow` — status transition rules (from `statusValue` to `statusNext`)

***

## get\_process

Get detailed information for a specific process including its fields and workflow transitions.

| Property      |     |
| ------------- | --- |
| **Read-only** | Yes |

### Parameters

| Parameter | Type   | Required | Description |
| --------- | ------ | -------- | ----------- |
| `id`      | string | Yes      | Process ID. |

### Returns

A `ProcessDto` with the process ID, name, description, fields, and workflow transitions.
