search_hex_projects
Search Hex projects by matching regex patterns in project titles. Retrieve JSON results with customizable limits and offsets for efficient project discovery.
Instructions
Search for Hex projects using regex pattern matching on project titles.
Args:
search_pattern: Regex pattern to search for in project titles
limit: Maximum number of projects to return (default: 100)
offset: Number of projects to skip for pagination (default: 0)
Returns:
JSON string with matching projects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
search_pattern | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"search_pattern": {
"title": "Search Pattern",
"type": "string"
}
},
"required": [
"search_pattern"
],
"title": "search_hex_projectsArguments",
"type": "object"
}