get_gem_reverse_dependencies
Identify RubyGems that depend on a specific gem by querying reverse dependencies, using the MCP Server RubyGems API for accurate dependency insights.
Instructions
Get gems that depend on a specific RubyGem
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": {
"gem_name": {
"description": "Name of the RubyGem to fetch reverse dependencies for",
"minLength": 1,
"type": "string"
}
},
"required": [
"gem_name"
],
"type": "object"
},
"type": "object"
}