OpenForm
MCPTools

get_registry

Last updated on

Get details for a specific OpenForm registry including its artifacts

Get details for a specific OpenForm registry including its artifacts (up to 500) and install stats. Each artifact includes registry_id and artifact_name for chaining into get_artifact or render.

Parameters

ParameterTypeRequiredDescription
registry_idstringYesRegistry ID

Response

FieldTypeDescription
idstringRegistry ID
namestringRegistry name
displayNamestringDisplay name (e.g. owner/repo)
urlstringRegistry URL
descriptionstringRegistry description
homepagestringHomepage URL
statusstringRegistry status
createdAtstringCreation timestamp
artifactsarrayList of artifacts in the registry
artifacts[].registry_idstringRegistry ID (for chaining)
artifacts[].artifact_namestringArtifact name (for chaining)
artifacts[].titlestringDisplay title
artifacts[].kindstringArtifact kind
artifacts[].installsTotalintegerTotal installs
errorstringError message if the registry was not found

Example

// Request
{
  "registry_id": "cly1abc123"
}

// Response
{
  "id": "cly1abc123",
  "name": "legal-forms",
  "displayName": "acme/legal-forms",
  "url": "https://example.com/registry",
  "description": "Standard legal form templates",
  "homepage": "https://example.com",
  "status": "verified",
  "createdAt": "2026-01-10T08:00:00.000Z",
  "artifacts": [
    {
      "registry_id": "cly1abc123",
      "artifact_name": "lease-agreement",
      "title": "Lease Agreement",
      "kind": "form",
      "installsTotal": 1420
    },
    {
      "registry_id": "cly1abc123",
      "artifact_name": "nda",
      "title": "Non-Disclosure Agreement",
      "kind": "form",
      "installsTotal": 980
    }
  ]
}

On this page