Skip to main content
Glama
maxigirl123

storefront-guard-mcp-server

by maxigirl123

Verify Storefront Legitimacy

verify_storefront
Read-only

Verify a storefront's legitimacy before paying by checking domain registration, SSL history, and scam blocklists to get a trust score and recommendation.

Instructions

Checks whether a merchant storefront looks like the same legitimate entity it appeared to be recently, BEFORE an agent commits payment to it.

This is the mirror image of merchant-side agent-verification protocols (e.g. Visa's Trusted Agent Protocol): those let a merchant confirm an incoming agent is legitimate. This tool lets the AGENT confirm the MERCHANT is legitimate before paying.

It does NOT guarantee a storefront is safe - it is a fast, explainable pre-purchase signal built from free public data sources (domain registration history via RDAP, SSL certificate issuance history via Certificate Transparency logs, HTTPS validity, and a known-scam-domain check). Treat a "high" risk result as a strong reason to pause and get human confirmation before paying, and a "low" risk result as one input among others, not a guarantee.

Args:

  • domain (string): the bare domain of the storefront to check, e.g. "example-shop.com"

Returns: { "domain": string, "trustScore": number, // 0-100, higher = more trustworthy "riskLevel": "low" | "medium" | "high" | "unknown", "confidence": "low" | "medium" | "high", // how many signals could actually be resolved "reasons": string[], // human-readable explanation for the score "recommendation": "proceed" | "pause_for_confirmation" | "do_not_proceed", "recommendationReason": string, // one-line explanation of why this recommendation was made "signals": { ...raw signal data for audit/debugging... }, "checkedAt": string // ISO timestamp - this is a point-in-time result, do not cache it }

Recommendation values and suggested agent behavior:

  • "proceed": trust score is high with high confidence — complete the transaction silently, no user confirmation needed

  • "pause_for_confirmation": score is borderline or confidence is insufficient — pause and show recommendationReason to the user before completing payment

  • "do_not_proceed": domain matched a scam list or trust score is critically low — block the transaction and actively notify the user (do not fail silently)

Examples:

  • Use when: an agent is about to submit payment to a storefront it found via search or a marketplace listing

  • Use when: comparing several candidate storefronts for the same product before choosing one to buy from

  • Don't use when: verifying a well-known, previously-transacted-with merchant on every single repeat purchase - reserve for new or unfamiliar storefronts, since results are not meant to be cached long-term but also aren't needed for every routine repeat transaction

Error Handling:

  • Never throws - if a data source is unreachable, the affected signal is returned as null and "confidence" drops accordingly rather than failing the call

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesThe bare domain of the storefront to verify, e.g. 'example-shop.com'. Strip protocol and path if given a full URL.
Behavior5/5

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

Beyond the annotations, the description discloses important behavioral traits: results are point-in-time and should not be cached, the tool never throws and degrades gracefully by returning null signals, and risk outputs are advisory rather than guarantees. This adds substantial behavioral context that annotations alone do not provide.

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?

Although lengthy, the description is well-structured with clear sections (Args, Returns, Recommendation values, Examples, Error Handling) and every section serves a distinct purpose. Core guidance is front-loaded, and the length is justified by the tool's behavioral complexity.

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?

With no output schema present, the description compensates fully by explaining the return structure, each recommendation value, and the suggested agent behavior for each outcome. It also covers error handling and usage boundaries, making the tool callable correctly without additional external knowledge.

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?

The schema already fully documents the single parameter with a clear description, including the example and the instruction to strip protocol/path. The description's Arg section essentially repeats this information without adding significant new meaning, so the schema carries the burden and the baseline of 3 is appropriate.

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 clearly states a specific verb ('Checks whether') and a specific resource ('a merchant storefront'), with a concrete decision context ('BEFORE an agent commits payment'). It also clarifies what the tool does not do ('does NOT guarantee a storefront is safe'), leaving no ambiguity about its role.

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?

The description provides explicit 'Use when' and 'Don't use when' guidance, including concrete scenarios like submitting payment to a newly found storefront, comparing candidates, and avoiding routine repeat purchases. It also maps return values to specific agent behaviors, so an agent knows exactly when to proceed, pause, or block.

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/maxigirl123/Fortik'

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