Skip to main content
Glama

edubase_get_tag

Read-onlyIdempotent

Retrieve or verify a tag in EduBase using its identification string. Check tag existence and details to ensure accurate organization of quizzes and educational content.

Instructions

Get/check tag.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagYestag identification string

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoexternal unique tag identifier (if set for the tag)
tagYestag identification string
iconYesFont Awesome icon class name
colorYescolor in HEX format
titleYestitle of the tag

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed3 schema fields changedv1.2.15
    • removedOutput schema / properties / name
      Removed value: -{
      -  "description": "title of the tag",
      -  "type": "string"
      -}
    • addedOutput schema / properties / title
      Added value: +{
      +  "description": "title of the tag",
      +  "type": "string"
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "tag",
      -  "name",
      -  "color",
      -  "icon"
      -]New value: +[
      +  "tag",
      +  "title",
      +  "color",
      +  "icon"
      +]
  2. Addedv1.2.9
  3. Removedv1.2.8
  4. Changed2 schema fields changedv1.1.2
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "color": {
      +      "description": "color in HEX format",
      +      "type": "string"
      +    },
      +    "icon": {
      +      "description": "Font Awesome icon class name",
      +      "type": "string"
      +    },
      +    "id": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "description": "external unique tag identifier (if set for the tag)"
      +    },
      +    "name": {
      +      "description": "title of the tag",
      +      "type": "string"
      +    },
      +    "tag": {
      +      "description": "tag identification string",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "tag",
      +    "name",
      +    "color",
      +    "icon"
      +  ],
      +  "type": "object"
      +}
  5. First observedv1.0.22

TDQS

C2.2/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint, and destructiveHint false, so the safety profile is covered. The description adds no behavioral context beyond the implied GET, and 'check' is ambiguous between existence checking and retrieval. No contradiction exists.

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

Conciseness2/5

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

The phrase is extremely short, but this is under-specification rather than effective conciseness. It eliminates all supporting context that would help an agent select or invoke the tool correctly.

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

Completeness2/5

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

Although the one-parameter schema, output schema, and annotations reduce the burden, the description fails to clarify what 'tag' refers to or when to choose this over resource-specific tag siblings. An agent cannot confidently distinguish edubase_get_tag from edubase_get_class_tag, edubase_get_quiz_tag, and similar tools.

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% and the single required parameter 'tag' is documented as 'tag identification string'. The description adds no parameter-level detail, but the schema already carries this burden, so the baseline 3 applies.

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

Purpose2/5

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

The description 'Get/check tag' is essentially a restatement of the tool name; it adds 'check' but does not clarify whether the tool fetches a tag or verifies its existence, nor does it identify the tag domain. Among many siblings like edubase_get_quiz_tag and edubase_get_exam_tag, this provides no differentiation.

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives such as edubase_get_tags or the many resource-specific tag endpoints. The description gives no context, exclusions, or alternative routes.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/EduBase/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server