fc_search_content
Search across FluentCommunity posts, comments, spaces, and users to find specific content using targeted queries and filters.
Instructions
Search across all FluentCommunity content (posts, comments, spaces)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query | |
| content_type | No | Type of content to search | all |
| space_id | No | Limit search to specific space | |
| limit | No | Number of results to return |
Input Schema (JSON Schema)
{
"properties": {
"content_type": {
"default": "all",
"description": "Type of content to search",
"enum": [
"all",
"posts",
"comments",
"spaces",
"users"
],
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results to return",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
},
"space_id": {
"description": "Limit search to specific space",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}