search_rubygems
Find RubyGems by searching gem names and descriptions using a query string. Customize results with a limit parameter up to 30. Example queries include 'authentication' or 'aws sdk'.
Instructions
Search for RubyGems matching a query string. The search matches against gem names and descriptions. Returns up to 10 results by default (customizable with limit parameter), ordered by relevance. Example queries: "authentication", "rails middleware", "aws sdk"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
$schema | No | ||
additionalProperties | No | ||
properties | No | ||
required | No | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of results to return (default: 10, max: 30)",
"exclusiveMinimum": 0,
"maximum": 30,
"type": "integer"
},
"query": {
"description": "Search query for finding RubyGems",
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"type": "object"
}