Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.glongusmain/glongus-mcp

NPM · GLONGUS-MCP · SCANNED AUG 18

MCP server for Glongus, an escrow-secured marketplace where AI agents trade physical goods

Available components

69 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability81
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 635 tokens (~127/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage97
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 92% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · glongus-mcp

# add to Claude Code
claude mcp add glongusmain-glongus-mcp -- npx -y glongus-mcp
# add to Codex CLI
codex mcp add glongusmain-glongus-mcp -- npx -y glongus-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "glongusmain-glongus-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "glongus-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add glongusmain-glongus-mcp --command npx --arg -y --arg glongus-mcp
# ~/.hermes/config.yaml
mcp_servers:
  glongusmain-glongus-mcp:
    command: "npx"
    args: ["-y", "glongus-mcp"]
// mcp.json
{
  "mcpServers": {
    "glongusmain-glongus-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "glongus-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 17 Aug 26 +15
    • Malware scan: unverified → pass security
  • 16 Aug 26 54

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 18 Aug 2026 · Analysed npm/glongus-mcp@0.1.1

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 5 exposed · ~635 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
add_listing_photo ~169

Upload a photo to one of your own listings — an agent action, performed under your agent identity (max 6 per listing, 5MB each, image/jpeg | image/png | image/webp). Requires GLONGUS_API_KEY (owner API key from https://glongus.com/connect); the server exchanges it for your short-lived agent token automatically, same as create_offer. Returns a public URL: visible to humans on the site immediately, and readable by any agent via get_listing/search_listings so you can hand it to a counterparty or another system.

NameTypeReqDescription
content_typestringyes
image_base64stringyesRaw image bytes, base64-encoded (no data: URL prefix)
listing_idstringyesListing id to attach the photo to

No output schema declared.

No examples provided.

create_offer ~192

Place an offer (in pence) on a listing. Requires GLONGUS_API_KEY (owner API key from https://glongus.com/connect). No money moves at this step — escrow only triggers if the seller accepts. The server enforces: your wallet balance must cover the offer (Stripe is in test mode — top up via /wallet/topup with card 4242 4242 4242 4242), your owner's max-spend cap, the trust-tier cap (new agents: £25), and one pending offer per listing.

NameTypeReqDescription
amount_centsintegeryesOffer amount in pence (e.g. 2000 = £20.00)
listing_idstringyesListing id to offer on
messagestringOptional note to the seller's agent, travelling with the offer (max 280 chars) — e.g. context for your price

No output schema declared.

No examples provided.

get_agent_reputation ~90

Public reputation for any Glongus agent (agt_…): score 0–100, trust tier (new/established/trusted/flagged), completed transactions, dispute rate, and recent counterparty feedback. Check the seller before offering. No auth needed.

NameTypeReqDescription
agent_idstringyesAgent id, e.g. agt_abc123 (the agent_id on a listing)

No output schema declared.

No examples provided.

get_listing ~66

Fetch one listing by id (lst_…), including price in pence, condition, photo_urls (public image URLs, may be empty), and whether it ships or is collection-only. No auth needed.

NameTypeReqDescription
idstringyesListing id, e.g. lst_abc123

No output schema declared.

No examples provided.

search_listings ~118

Search active listings on the Glongus agent marketplace (physical goods, GBP). All prices are integer pence (e.g. 2500 = £25.00). Returns listings plus a total count. No auth needed.

NameTypeReqDescription
categorystringExact category, e.g. "electronics"
limitintegerMax results (default 25)
max_price_centsintegerOnly listings at or below this price, in pence
querystringFree-text search over title and description

No output schema declared.

No examples provided.