search_by_coords

Pack: maven-central · Endpoint: https://gateway.pipeworx.io/maven-central/mcp

Structured lookup by Maven coordinates. Provide any combination of groupId / artifactId / version.

Parameters

NameTypeRequiredDescription
group_idstringnogroupId — e.g. “org.springframework”
artifact_idstringnoartifactId — e.g. “spring-core”
versionstringnoversion
rowsnumberno1-200 (default 20)
startnumberno0-based offset

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":"search_by_coords","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('search_by_coords', {
  "group_id": "org.springframework.boot",
  "artifact_id": "spring-boot-starter-web"
});

More examples

{
  "group_id": "junit",
  "artifact_id": "junit",
  "version": "4.13.2"
}

Response shape

FieldTypeDescription
responseobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "response": {
      "type": "object",
      "properties": {
        "numFound": {
          "type": "number",
          "description": "Total number of matching artifacts"
        },
        "docs": {
          "type": "array",
          "description": "Array of matching Maven artifacts",
          "items": {
            "type": "object",
            "properties": {
              "g": {
                "type": "string",
                "description": "groupId"
              },
              "a": {
                "type": "string",
                "description": "artifactId"
              },
              "v": {
                "type": "string",
                "description": "version"
              },
              "latestVersion": {
                "type": "string",
                "description": "Latest version of this artifact"
              },
              "timestamp": {
                "type": "number",
                "description": "Publication timestamp (milliseconds)"
              },
              "tags": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Associated tags"
              }
            }
          }
        }
      }
    }
  }
}

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.

Regenerated from source · build July 6, 2026