Skip to main content
Glama
luno-cms

LUNO — AI Backend Platform

Official

search_admin_help

Read-onlyIdempotent

Search the LUNO help knowledge base for admin articles on snapshot, Form Blueprint, public API, and publish revision. Pass a query and optional locale to get relevant results.

Instructions

ヘルプ KB 検索。必須: q。任意: locale(ja|en), limit(既定 20)。category agent(snapshot / Form Blueprint / 公開 API / publish_revision)もヒット。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYes検索クエリ
limitNo最大件数(既定 20)
localeNoレスポンス locale(既定 ja)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoPrimary resource UUID for the next tool call
okNo
nameNo
slugNoURL slug when the resource has one
itemsNoList rows; pass item.id to get_*/update_*
statusNoResource or revision status

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.4
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": {},
      +  "definitions": {
      +    "__schema0": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        },
      +        {
      +          "items": {
      +            "$ref": "#/definitions/__schema0"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "additionalProperties": {
      +            "$ref": "#/definitions/__schema0"
      +          },
      +          "propertyNames": {
      +            "type": "string"
      +          },
      +          "type": "object"
      +        }
      +      ]
      +    }
      +  },
      +  "properties": {
      +    "id": {
      +      "description": "Primary resource UUID for the next tool call",
      +      "type": "string"
      +    },
      +    "items": {
      +      "description": "List rows; pass item.id to get_*/update_*",
      +      "items": {
      +        "additionalProperties": {
      +          "$ref": "#/definitions/__schema0"
      +        },
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "name": {
      +      "type": "string"
      +    },
      +    "ok": {
      +      "type": "boolean"
      +    },
      +    "slug": {
      +      "description": "URL slug when the resource has one",
      +      "type": "string"
      +    },
      +    "status": {
      +      "description": "Resource or revision status",
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  2. First observed

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false), so the bar is lower. The description adds genuine behavioral context beyond annotations and schema: the category agent also hits snapshot / Form Blueprint / public API / publish_revision content, meaning search results are not limited to standard help pages. Defaults for limit and locale are stated, though these duplicate the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but efficient: purpose is front-loaded, the parameter essentials (required/optional, enums, defaults) are packed into one compact clause, and the category note is the only extra. The telegraphic style sacrifices prose flow for information density, but every fragment earns its place; it could read slightly more naturally without adding length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Since an output schema exists, return-value explanation is unnecessary; combined with 100% parameter coverage and read-only/idempotent annotations, the definition is nearly complete. The one meaningful gap is the absence of guidance for choosing among search_admin_help, get_admin_help_article, and ask_admin_help — a boundary that would make this definition fully self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline of 3 applies. The description restates q as required, locale and limit as optional with defaults, which adds nothing beyond what the schema already documents. The category note is parameter-adjacent but describes search scope/behavior, not the meaning of any parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb-resource pair, 「ヘルプ KB 検索」 (search Help KB), and further sharpens scope with 「category agent(snapshot / Form Blueprint / 公開 API / publish_revision)もヒット」, clarifying what content the search will match. An agent can immediately tell this is query-based KB search rather than article retrieval (get_admin_help_article) or conversational Q&A (ask_admin_help), even without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The required q parameter and the verb 検索 imply this tool is for query-driven search of the help KB, so usage context is present. However, the description never states when to prefer this over the two closely-related siblings get_admin_help_article and ask_admin_help, nor gives any exclusions. With 52 siblings, explicit routing guidance would materially reduce mis-selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.