users_getUserSelectGroups

READ

Get user select groups.

Parameters

limitnumberrequired
offsetnumberrequired
typestringoptional
searchstringoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "users_getUserSelectGroups",
  "arguments": {
    "limit": 0,
    "offset": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "search": {
      "type": "string"
    },
    "limit": {
      "type": "number"
    },
    "offset": {
      "type": "number"
    }
  },
  "required": [
    "limit",
    "offset"
  ]
}