OpenForm
MCPTools

list_artifacts

Last updated on

Browse the OpenForm artifact registry sorted by popularity

Browse the OpenForm artifact registry. Returns a ranked list of artifacts sorted by popularity (all-time installs).

Parameters

ParameterTypeRequiredDescription
kind"form" | "checklist" | "document" | "bundle"NoFilter by artifact kind
limitinteger (1--50)NoMax results to return (default: 20)
offsetintegerNoOffset for pagination (default: 0)

Response

FieldTypeDescription
artifactsarrayList of artifacts, each containing the fields below
artifacts[].registry_idstringRegistry ID (for chaining into get_artifact or render)
artifacts[].artifact_namestringArtifact name (for chaining into get_artifact or render)
artifacts[].rankintegerPosition in the leaderboard
artifacts[].titlestringDisplay title
artifacts[].kindstringArtifact kind
artifacts[].descriptionstringArtifact description
artifacts[].registryobjectRegistry info: displayName, url
artifacts[].statsobjectInstall stats: installsTotal, installs24h, installs7d
totalintegerNumber of results returned
limitintegerLimit used
offsetintegerOffset used

Example

// Request
{
  "kind": "form",
  "limit": 3
}

// Response
{
  "artifacts": [
    {
      "registry_id": "cly1abc123",
      "artifact_name": "lease-agreement",
      "rank": 1,
      "title": "Lease Agreement",
      "kind": "form",
      "description": "Standard residential lease agreement",
      "registry": {
        "displayName": "acme/legal-forms",
        "url": "https://example.com/registry"
      },
      "stats": {
        "installsTotal": 1420,
        "installs24h": 58,
        "installs7d": 312
      }
    }
  ],
  "total": 1,
  "limit": 3,
  "offset": 0
}

On this page