OpenForm
MCPTools

list_registries

Last updated on

List OpenForm artifact registries with artifact counts and total installs

List OpenForm artifact registries with artifact counts and total installs.

Parameters

ParameterTypeRequiredDescription
status"verified" | "pending" | "bad" | "all"NoFilter by registry status (default: "verified")
limitinteger (1--50)NoMax results to return (default: 20)
offsetintegerNoOffset for pagination (default: 0)

Response

FieldTypeDescription
registriesarrayList of registries, each containing the fields below
registries[].idstringRegistry ID
registries[].namestringRegistry name
registries[].displayNamestringDisplay name (e.g. owner/repo)
registries[].urlstringRegistry URL
registries[].descriptionstringRegistry description
registries[].homepagestringHomepage URL
registries[].statusstringRegistry status
registries[].artifactCountintegerNumber of artifacts in the registry
registries[].totalInstallsintegerTotal installs across all artifacts
totalintegerNumber of results returned
limitintegerLimit used
offsetintegerOffset used

Example

// Request
{
  "status": "verified",
  "limit": 2
}

// Response
{
  "registries": [
    {
      "id": "reg_abc",
      "name": "legal-forms",
      "displayName": "acme/legal-forms",
      "url": "https://example.com/registry",
      "description": "Standard legal form templates",
      "homepage": "https://example.com",
      "status": "verified",
      "artifactCount": 12,
      "totalInstalls": 4350
    }
  ],
  "total": 1,
  "limit": 2,
  "offset": 0
}

On this page