versions
Pack: deno-land · Endpoint: https://gateway.pipeworx.io/deno-land/mcp
List all published versions of a deno.land/x module by name; returns an array of version strings in reverse-chronological order.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes |
Example call
Arguments
{
"name": "std"
}
curl
curl -X POST https://gateway.pipeworx.io/deno-land/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"versions","arguments":{"name":"std"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('versions', {
"name": "std"
});
Response shape
| Field | Type | Description |
|---|---|---|
latest | string | Latest version identifier |
versions | array | List of available versions |
Full JSON Schema
{
"type": "object",
"properties": {
"latest": {
"type": "string",
"description": "Latest version identifier"
},
"versions": {
"type": "array",
"description": "List of available versions",
"items": {
"type": "string"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"deno-land": {
"url": "https://gateway.pipeworx.io/deno-land/mcp"
}
}
}
See Getting Started for client-specific install steps.