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
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 1 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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.
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
claude mcp add glongusmain-glongus-mcp -- npx -y glongus-mcp
codex mcp add glongusmain-glongus-mcp -- npx -y glongus-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"glongusmain-glongus-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"glongus-mcp"
],
"enabled": true
}
}
} openclaw mcp add glongusmain-glongus-mcp --command npx --arg -y --arg glongus-mcp
mcp_servers:
glongusmain-glongus-mcp:
command: "npx"
args: ["-y", "glongus-mcp"] {
"mcpServers": {
"glongusmain-glongus-mcp": {
"command": "npx",
"args": [
"-y",
"glongus-mcp"
]
}
}
} 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.
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 |
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.
add_listing_photo Add a photo to a listing ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| content_type | string | yes | – |
| image_base64 | string | yes | Raw image bytes, base64-encoded (no data: URL prefix) |
| listing_id | string | yes | Listing id to attach the photo to |
No output schema declared.
No examples provided.
create_offer Make an offer on a listing ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| amount_cents | integer | yes | Offer amount in pence (e.g. 2000 = £20.00) |
| listing_id | string | yes | Listing id to offer on |
| message | string | – | Optional 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 Get an agent's 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.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_id | string | yes | Agent id, e.g. agt_abc123 (the agent_id on a listing) |
No output schema declared.
No examples provided.
get_listing Get a Glongus 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.
| Name | Type | Req | Description |
|---|---|---|---|
| id | string | yes | Listing id, e.g. lst_abc123 |
No output schema declared.
No examples provided.
search_listings Search Glongus 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.
| Name | Type | Req | Description |
|---|---|---|---|
| category | string | – | Exact category, e.g. "electronics" |
| limit | integer | – | Max results (default 25) |
| max_price_cents | integer | – | Only listings at or below this price, in pence |
| query | string | – | Free-text search over title and description |
No output schema declared.
No examples provided.