list_versions
Pack: maven-central · Endpoint: https://gateway.pipeworx.io/maven-central/mcp
List all published versions of a Maven artifact identified by groupId and artifactId, with release timestamps, using the Maven Central Solr GAV core.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
group_id | string | yes | |
artifact_id | string | yes | |
rows | number | no | 1-200 (default 200) |
Example call
Arguments
{
"group_id": "org.springframework.boot",
"artifact_id": "spring-boot-starter-web"
}
curl
curl -X POST https://gateway.pipeworx.io/maven-central/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_versions","arguments":{"group_id":"org.springframework.boot","artifact_id":"spring-boot-starter-web"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_versions', {
"group_id": "org.springframework.boot",
"artifact_id": "spring-boot-starter-web"
});
Response shape
Always returns: group_id, artifact_id, count, versions
| Field | Type | Description |
|---|---|---|
group_id | string | groupId queried |
artifact_id | string | artifactId queried |
count | number | Number of versions returned |
versions | array | Published versions with release dates |
Full JSON Schema
{
"type": "object",
"properties": {
"group_id": {
"type": "string",
"description": "groupId queried"
},
"artifact_id": {
"type": "string",
"description": "artifactId queried"
},
"count": {
"type": "number",
"description": "Number of versions returned"
},
"versions": {
"type": "array",
"description": "Published versions with release dates",
"items": {
"type": "object",
"properties": {
"version": {
"type": "string",
"description": "Version string"
},
"released": {
"type": [
"string",
"null"
],
"description": "ISO 8601 release timestamp or null if unavailable"
}
},
"required": [
"version",
"released"
]
}
}
},
"required": [
"group_id",
"artifact_id",
"count",
"versions"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"maven-central": {
"url": "https://gateway.pipeworx.io/maven-central/mcp"
}
}
}
See Getting Started for client-specific install steps.