search_workspaces

Input

Parameter
Type
Required
Description

first

number

No

Number of results to return (forward pagination). Maximum 100. Use with "after" for paging.

after

string

No

Cursor for forward pagination. Pass the "endCursor" from previous page's pageInfo.

last

number

No

Number of results to return (backward pagination). Maximum 100. Use with "before" for reverse paging.

before

string

No

Cursor for backward pagination. Pass the "startCursor" from previous page's pageInfo.

filters

WorkspacesFiltersInput

No

Filter criteria for the workspace search. - WorkspacesFiltersInput

WorkspacesFiltersInput

Field
Type
Required
Description

name

WorkspacesNameInput

No

Filter by workspace name (supports search) - WorkspacesNameInput

slug

WorkspacesSlugInput

No

Filter by workspace slug (exact match) - WorkspacesSlugInput

status

WorkspacesStatusInput

No

Filter by workspace status - WorkspacesStatusInput

WorkspacesNameInput

Field
Type
Required
Description

search

string

No

Search term for workspace name (partial match)

WorkspacesSlugInput

Field
Type
Required
Description

eq

string

No

Exact match for workspace slug

WorkspacesStatusInput

Field
Type
Required
Description

eq

Status

No

Filter by exact workspace status - Status

Status

Value
Description

ACTIVE

CHURNED

Output

Field
Type
Description

content

ContentItem[]

Array of content items returned by the tool - ContentItem

isError

boolean

Whether the tool execution resulted in an error

ContentItem

Field
Type
Description

type

'text'

Content type (currently only 'text' is supported)

text

string

The text content to display

Last updated