Skip to main content
Glama

Server Details

MCP commerce surface for refurbished datacenter hardware, with x402 agent-payment discovery.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Fish-Tacos/sati-grumpy-demo
GitHub Stars
0
Server Listing
Salvage & Surplus MCP

Available Tools

5 tools
add_to_cartAInspect

Add a Salvage & Surplus product to your cart and receive a cart token. Requires a valid SKU. Returns cart_token needed for checkout.

ParametersJSON Schema
NameRequiredDescriptionDefault
skuYes
quantityNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It adds useful context by stating 'Requires a valid SKU' and 'Returns cart_token needed for checkout', but it does not disclose side effects like whether it creates a new cart, modifies an existing cart, or what happens on invalid input.

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?

Two sentences with no filler. The description is front-loaded with the primary action and immediately provides critical prerequisite and output information.

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?

For a simple two-parameter tool with an output schema, the description covers the essential flow (add product, receive token) and links it to checkout. It could mention error cases or cart state, but overall it is sufficiently complete.

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 coverage is 0%, so description must compensate. It explains the SKU requirement ('valid SKU') which adds meaning beyond the schema, but it does not mention the quantity parameter or its default behavior, leaving the description incomplete.

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 the action ('Add a Salvage & Surplus product to your cart') and the result ('receive a cart token'). It distinguishes from sibling tools like checkout and confirm_payment by focusing on the cart-add step.

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

Usage Guidelines4/5

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

The description implies the tool is for adding products to cart before checkout, and 'Requires a valid SKU' suggests using get_product/search_products first. However, it does not explicitly mention alternatives or when not to use it, but the context is clear enough.

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

checkoutAInspect

Initiate checkout for a cart. Provide cart_token from add_to_cart and a billing email. Returns a payment_token required to complete the purchase.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYes
cart_tokenYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the action (initiating checkout), the prerequisite (cart_token from add_to_cart), the need for a billing email, and the output (payment_token). This provides some behavioral context, but it does not mention potential side effects (e.g., payment holds, cart state changes) or permission requirements, so it is only minimally transparent.

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?

The description is two sentences, front-loaded with the primary action. Every word contributes: the first sentence states the purpose, the second explains inputs and output. There is no redundancy or filler, making it appropriately concise.

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?

The tool is simple (two string parameters, no nested objects, output schema present). The description covers the essential flow: inputs, source of cart_token, and the returned payment_token. It could mention error conditions or explicitly connect to confirm_payment, but given the low complexity and existing output schema, it is largely complete.

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

Parameters4/5

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

The input schema provides only field names and types with no descriptions. The description compensates by adding semantics: cart_token is sourced from add_to_cart, and email is specifically a billing email. This makes both parameters meaningful and clarifies their purpose, though it stops short of specifying formats or validation rules.

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 the tool initiates checkout for a cart, specifies the required inputs (cart_token from add_to_cart and a billing email), and mentions the output (payment_token). This distinct verb+resource+flow makes it easy to differentiate from sibling tools like add_to_cart, confirm_payment, get_product, and search_products.

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

Usage Guidelines4/5

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

The description gives contextual guidance by instructing to provide the cart_token from add_to_cart, implying it should be used after cart building. It also notes the payment_token is required to complete the purchase, indicating a follow-up step. However, it does not explicitly name alternatives or say when not to use this tool, so it falls short of a 5.

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

confirm_paymentAInspect

Confirm payment using a payment_token from checkout and a cc_token (credit card token). Completes the Salvage & Surplus purchase and returns an order confirmation.

ParametersJSON Schema
NameRequiredDescriptionDefault
cc_tokenYes
payment_tokenYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose that the tool completes the purchase and returns an order confirmation, which implies finality. Yet it does not explicitly state irreversible effects (e.g., charging the card) or error possibilities, leaving some behavioral ambiguity for a payment operation.

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?

The description is two sentences, front-loaded with the primary action, and each sentence adds necessary context. There is no fluff or repetition, making it highly concise and well-structured.

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?

For a tool with 2 required parameters and an output schema, the description is almost sufficient. It explains the process and return value, but lacks details about side effects beyond 'completes the purchase'. It is still more complete than many tools, given the low complexity.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It adds meaning by explaining that payment_token comes from checkout and cc_token is a credit card token, giving agents a better understanding than the bare schema. It does not provide format or validation details, but it covers the core roles of both parameters.

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 the tool confirms payment using two specific tokens and completes the purchase, with a concrete outcome (returns order confirmation). The verb 'confirm' and resource 'payment' are specific, and it distinguishes itself from siblings like checkout and add_to_cart by focusing on final payment confirmation.

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

Usage Guidelines4/5

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

The description implies this tool is used after checkout by mentioning 'payment_token from checkout', providing clear context of when to use it. However, it does not explicitly exclude alternatives or state when not to use it, so it slightly misses the top score for explicit when/when-not guidance.

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

get_productAInspect

Retrieve full details for a Salvage & Surplus product by SKU. Example SKUs: GR-001, GR-002, GR-003, GR-004, GR-005.

ParametersJSON Schema
NameRequiredDescriptionDefault
skuYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the burden. The verb 'Retrieve' implies a safe read-only operation, and 'full details' sets expectations. However, it does not disclose any edge cases, error behavior, or authentication requirements. The description adds some context (domain, example SKUs) but is minimal.

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?

The description is two sentences: the first states the action and resource, the second provides example SKUs. Every word is useful; it is compact and front-loaded with the primary verb.

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?

This is a simple one-parameter getter with an output schema present, so the description doesn't need to explain return values. It provides enough to understand the tool's purpose and input format. A slight gap is the lack of relationship to sibling tools, but that's more of a usage-guideline issue.

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

Parameters5/5

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

The schema has no description for the 'sku' parameter (0% coverage). The description compensates by specifying the lookup is by SKU and provides concrete examples (GR-001, GR-002, etc.), which gives the agent the exact format for a valid input.

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 action ('Retrieve'), the resource ('Salvage & Surplus product'), and the lookup key ('by SKU'). This distinguishes it from sibling tools like add_to_cart or search_products, all of which have different purposes.

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 description implies usage when you have a SKU and need full product details, but it does not explicitly state when to use this tool versus alternatives like search_products. No when/when-not or alternative guidance is provided, only an implied context.

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

search_productsAInspect

Search Salvage & Surplus product catalog. Returns matching GPU rigs, server racks, drive arrays, and network gear. Filter by category: compute, servers, storage, networking, support.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
categoryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It does add value by specifying result categories and filter options, but it omits details such as read-only nature, pagination behavior, or any prerequisites. The behavior is mostly transparent, but not fully disclosed.

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?

The description is three short sentences, each delivering distinct information: what the tool does, what it returns, and how to filter. No filler or redundancy, making it easy for an agent to parse quickly.

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?

Given its simplicity (2 params, output schema present), the description is mostly complete. It covers purpose, results, and filters. It does not mention pagination or sorting, but these are often standard and may be inferred from the output schema. For a search tool, this is adequate.

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 0%, so the description must compensate. It explains the category parameter by listing allowed values (compute, servers, storage, networking, support), which is helpful. However, the query parameter is not elaborated (e.g., what fields it searches, matching rules), leaving partial semantic coverage.

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 'Search Salvage & Surplus product catalog', a specific verb-resource pair. It then lists concrete result types (GPU rigs, server racks, drive arrays, network gear) and filter categories, which clearly differentiates it from siblings like get_product, add_to_cart, and checkout.

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 usage is implied (search to find catalog items, optionally filter by category), but there is no explicit 'when to use this vs. get_product' or any exclusion criteria. The description does not reference siblings, so guidance is inferred rather than stated.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updates
    • First observedadd_to_cart
    • First observedcheckout
    • First observedconfirm_payment
    • First observedget_product
    • First observedsearch_products

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for verifying agent payment integrity on x402, providing tools to check payTo mismatches, market stats, and lookup endpoints.
    1
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server for agentic commerce, enabling AI agents to discover services, make x402 payments with USDC across multiple chains, and manage crypto wallets and token swaps.
    355
    1
    MIT
  • F
    license
    B
    quality
    C
    maintenance
    MCP server for paid business data services with free previews and paid tools (enriched search and competitive analysis) using x402 payment flow via Pyrimid Protocol on Base.
    5
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a distinct role: product discovery (search_products, get_product), cart management (add_to_cart), and payment processing (checkout, confirm_payment). The sequential flow is clear and there is no overlap between tools.

Naming Consistency4/5

Most tools follow a consistent lowercase verb_noun pattern (add_to_cart, confirm_payment, get_product, search_products). 'checkout' deviates slightly as a single verb, but it is still clear and follows the same overall style.

Tool Count5/5

With 5 tools, the server is well-scoped for a simple purchase workflow. Each tool is necessary for the core flow of searching, viewing, adding to cart, and completing a purchase.

Completeness4/5

The purchase lifecycle is covered end-to-end: search, retrieve details, add to cart, checkout, and confirm payment. Minor gaps exist such as no update/remove cart functionality, but these do not block the primary workflow.