users_searchUsersForSelect

READ

Search users for select.

Parameters

qstringrequired
typestringoptional
excludeSelfbooleanoptional
allowedIdsstring[]optional

Call it

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

call_tool
call_tool({
  "name": "users_searchUsersForSelect",
  "arguments": {
    "q": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "q": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "excludeSelf": {
      "type": "boolean"
    },
    "allowedIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "q"
  ]
}