Skip to main content
Glama

Check a merchant for KaliCart Bridge

lookup_merchant
Read-onlyIdempotent

Use this when the user already knows a merchant domain and needs to check whether it publishes a KaliCart Bridge catalog, its latest observed access state, or its federation consent. This tool only reads the Global registry and never probes or modifies the merchant. Do not use it to discover products; use global_search instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesMerchant domain, e.g. shop.example.com

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
probeNo
domainYes
consentNo
registeredYes
observed_atNo
bridge_accessNo
bridge_versionNo
bridge_detectedNo
federation_statusNo
merchant_discovery_urlNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": true,
      +  "properties": {
      +    "bridge_access": {
      +      "type": "string"
      +    },
      +    "bridge_detected": {
      +      "type": "boolean"
      +    },
      +    "bridge_version": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "consent": {},
      +    "domain": {
      +      "type": "string"
      +    },
      +    "federation_status": {
      +      "type": "string"
      +    },
      +    "merchant_discovery_url": {
      +      "anyOf": [
      +        {
      +          "format": "uri",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "observed_at": {
      +      "anyOf": [
      +        {
      +          "anyOf": [
      +            {
      +              "type": "string"
      +            },
      +            {
      +              "format": "date-time",
      +              "type": "string"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "probe": {
      +      "type": "string"
      +    },
      +    "registered": {
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "registered",
      +    "domain"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so safety is covered structurally. The description adds genuinely new behavioral context: it reads only the Global registry and never probes or modifies the merchant, which clarifies the surprising openWorldHint=true. It does not mention auth requirements or rate limits, so it stops short of a 5.

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

Conciseness5/5

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

Three sentences, each doing distinct work: purpose and returned facets first, read-only scope second, exclusion third. Zero filler and the most decision-relevant information is front-loaded.

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

Completeness5/5

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

An output schema exists, so return formatting need not be explained, and annotations carry the safety profile. The description still names the three things the lookup answers, which is exactly the completeness an agent needs for a one-parameter read tool.

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 there is a single parameter, so the schema already documents the domain format and example. The description adds no format or validation detail beyond it, making the baseline 3 correct.

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?

States a specific verb (check/lookup) and resource (merchant domain) plus the exact facets returned: Bridge catalog publication, latest observed access state, and federation consent. It also explicitly distinguishes itself from global_search, so an agent can route without opening either schema.

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

Usage Guidelines5/5

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

Gives a positive precondition ('when the user already knows a merchant domain') and an explicit exclusion with the correct alternative ('Do not use it to discover products; use global_search instead'). Nothing about when to select this tool is left to inference.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.