OpenForm
MCPTools

search

Last updated on

Search OpenForm artifacts and registries by keyword

Search OpenForm artifacts and registries by keyword. Returns matching artifacts and registries ranked by popularity.

Parameters

ParameterTypeRequiredDescription
querystring (min 2 chars)YesSearch query
kind"form" | "checklist" | "document" | "bundle"NoFilter artifacts by kind
limitinteger (1--50)NoMax results to return (default: 20)

Response

The response contains a mixed results array with two types of entries: artifacts and registries.

FieldTypeDescription
resultsarrayMixed list of artifact and registry matches
totalintegerTotal number of results
querystringThe search query that was used

Each artifact result:

FieldTypeDescription
type"artifact"Result type
registry_idstringRegistry ID (for chaining into get_artifact or render)
artifact_namestringArtifact name (for chaining into get_artifact or render)
artifact.titlestringDisplay title
artifact.kindstringArtifact kind
artifact.descriptionstringArtifact description
artifact.registry.displayNamestringRegistry display name
artifact.installsTotalintegerTotal installs

Each registry result:

FieldTypeDescription
type"registry"Result type
registry.idstringRegistry ID
registry.namestringRegistry name
registry.displayNamestringDisplay name
registry.descriptionstringRegistry description

Example

// Request
{
  "query": "lease",
  "kind": "form",
  "limit": 5
}

// Response
{
  "results": [
    {
      "type": "artifact",
      "registry_id": "cly1abc123",
      "artifact_name": "lease-agreement",
      "artifact": {
        "title": "Lease Agreement",
        "kind": "form",
        "description": "Standard residential lease agreement",
        "registry": {
          "displayName": "acme/legal-forms"
        },
        "installsTotal": 1420
      }
    },
    {
      "type": "registry",
      "registry": {
        "id": "cly2def456",
        "name": "lease-templates",
        "displayName": "realty/lease-templates",
        "description": "Collection of lease and rental agreement templates"
      }
    }
  ],
  "total": 2,
  "query": "lease"
}

On this page