get_dependencies
Pack: rubygems · Endpoint: https://gateway.pipeworx.io/rubygems/mcp
Get the runtime and development dependencies for a specific version of a Ruby gem. Returns each dependency with its version requirement string. Omit version to get the latest.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Gem name (e.g., “devise”) |
version | string | no | Version string (e.g., “5.0.4”). Omit for latest. |
Example call
curl -X POST https://gateway.pipeworx.io/rubygems/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_dependencies","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"rubygems": {
"url": "https://gateway.pipeworx.io/rubygems/mcp"
}
}
}
See Getting Started for client-specific install steps.