versions
Pack: deno-land · Endpoint: https://gateway.pipeworx.io/deno-land/mcp
List versions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes |
Example call
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":{}}}'
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.