fc_list_spaces
List and filter FluentCommunity spaces by status, type, privacy settings, or search terms to manage community content organization.
Instructions
List all spaces in FluentCommunity
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Filter by status | |
| type | No | Filter by space type | |
| privacy | No | Filter by privacy setting | |
| limit | No | Number of spaces to return | |
| search | No | Search term |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Number of spaces to return",
"type": "number"
},
"privacy": {
"description": "Filter by privacy setting",
"enum": [
"public",
"private"
],
"type": "string"
},
"search": {
"description": "Search term",
"type": "string"
},
"status": {
"description": "Filter by status",
"enum": [
"active",
"inactive",
"archived"
],
"type": "string"
},
"type": {
"description": "Filter by space type",
"type": "string"
}
},
"type": "object"
}