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.

lol.metamuse/wallet

NPM · METAMUSE-MCP · 2 COMPONENTS · SCANNED SEP 26

A muse's wallet on Robinhood Chain: stock tokens, USDG payments via rh777, vaults, on-chain ceiling.

+3 this week 68 Trust /100
Trust breakdown (7 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 → Why this is hard to score →

Supply Chain Security100
  • 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
  • 0 of 18 dependencies flagged as unhealthy. View diagnostics → Pass
Provenance & Transparency19
Schema Quality & AI Usability80
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 702 tokens (~70/item across 10 items; 8 tools + 2 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage84
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 44% of tool parameters carry a description.Partial
  • Structured output schemas are declared (13% of tools); any adoption earns full credit.Pass
Tool Safety100
  • No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
  • All 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation.Pass
  • An AI judge read all 9 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

How do I install the lol.metamuse/wallet MCP server?

lol.metamuse/wallet runs locally as an npm package, launched with npx -y metamuse-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

npm · metamuse-mcp

# add to Claude Code
claude mcp add lol-metamuse-wallet -- npx -y metamuse-mcp
// .cursor/mcp.json
{
  "mcpServers": {
    "lol-metamuse-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "metamuse-mcp"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "lol-metamuse-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "metamuse-mcp"
      ]
    }
  }
}
# add to Codex CLI
codex mcp add lol-metamuse-wallet -- npx -y metamuse-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "lol-metamuse-wallet": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "metamuse-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add lol-metamuse-wallet --command npx --arg -y --arg metamuse-mcp
# ~/.hermes/config.yaml
mcp_servers:
  lol-metamuse-wallet:
    command: "npx"
    args: ["-y", "metamuse-mcp"]
// ~/.netclaw/config/netclaw.json
{
  "McpServers": {
    "lol-metamuse-wallet": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "metamuse-mcp"
      ]
    }
  }
}
# add to Vellum
assistant mcp add lol-metamuse-wallet -t stdio -c npx -a -y metamuse-mcp
// mcp.json
{
  "mcpServers": {
    "lol-metamuse-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "metamuse-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.

  • 26 Sept 26 +3
    • Stability: unverified → 0.23 ▲ functional
  • 25 Sept 26 0
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 19 Sept 26 65

    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 26 Sept 2026 · Analysed npm/metamuse-mcp@0.1.2

Provenance No attestation

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

Result No attestation
Ecosystem npm

Background: How many MCP packages publish verified provenance →

Dependencies 18 packages
Packages resolved 18
Tree resolution Complete

Background: SBOMs and build attestations, explained →

MCP tools · 8 exposed · ~672 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. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →

Tool Tokens
metamuse_assets ~74

Robinhood Stock Tokens the router can price with Chainlink (the ones you may buy), with the latest on-chain price where available.

NameTypeReqDescription
symbolsarray–only these tickers
withPricesboolean–fetch Chainlink and Robinhood prices (slower); default true for up to 8 symbols

No output schema declared.

No examples provided.

metamuse_bind ~114

Register this muse with MetaMuse and get a join link for your human. They open it, create your account in their browser, set your ceiling and activate it; the rail pays the gas. Idempotent: calling again returns the existing link until the account is active.

NameTypeReqDescription
dailyUsdnumber––
daysinteger––
namestring–a display name for the join page
perTxUsdnumber–suggested per-trade ceiling in USD (human can change it)

No output schema declared.

No examples provided.

metamuse_pay ~110

Fetch a URL that charges in USDG. If it answers 402, sign the exact price from your account, retry, and return the paid response with its receipt. Refuses anything above maxUsdg. No gas.

NameTypeReqDescription
bodystring–request body for POST
headersobject––
maxUsdgstringyesthe most you are willing to pay, e.g. "0.05"
methodstring––
urlstringyes–

No output schema declared.

No examples provided.

metamuse_quote ~81

What a trade would return right now, priced on Uniswap and checked against Chainlink. Free, no signature.

NameTypeReqDescription
amountstringyesbuy: USDG to spend; sell: tokens to sell
sidestringyes–
slippageBpsinteger––
symbolstringyesticker, e.g. META

No output schema declared.

No examples provided.

metamuse_receipts ~34

What your account paid and received through rh777, with transactions you can show anyone.

NameTypeReqDescription
limitinteger––

No output schema declared.

No examples provided.

metamuse_status ~62

Who you are and where you stand: your muse key, your account on Robinhood Chain, USDG and ETH balances, the policy your human set (per-trade and daily ceiling, expiry) and how much of today's budget is left. Call this first.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

metamuse_trade ~128

Buy a stock token with USDG or sell one back to USDG, from your account (or your vault). Signs locally, the rail relays it, the chain enforces your ceiling. With confirm=false it only tells you what would happen.

NameTypeReqDescription
amountstringyesbuy: USDG to spend; sell: tokens to sell
confirmboolean–default true. false = dry run
sidestringyes–
slippageBpsinteger–default 100 (1%)
symbolstringyes–
viastring––
NameTypeReqDescription
executedbooleanyes–
explorerstring––
notestring––
quote–yes–
receipts–––
transactionstring––

No examples provided.

metamuse_vault ~69

Your vault: open one (others deposit USDG, you trade it, they redeem in kind) or read its state. Trade the vault's money with metamuse_trade via="vault".

NameTypeReqDescription
actionstringyes–
namestring––
symbolstring––

No output schema declared.

No examples provided.

Common questions

What is the lol.metamuse/wallet MCP server?

lol.metamuse/wallet is an MCP server listed in the public MCP registry as lol.metamuse/wallet. A muse's wallet on Robinhood Chain: stock tokens, USDG payments via rh777, vaults, on-chain ceiling. This page covers its npm package (metamuse-mcp).

Is the lol.metamuse/wallet MCP server safe to use?

lol.metamuse/wallet scores 68 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the lol.metamuse/wallet MCP server expose?

lol.metamuse/wallet exposes 8 tools: metamuse_status, metamuse_bind, metamuse_assets, metamuse_quote, metamuse_trade, and 3 more. Their descriptions and schemas cost roughly 672 tokens of context every time the server is loaded.

Is the lol.metamuse/wallet MCP server still maintained?

lol.metamuse/wallet is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

What licence is the lol.metamuse/wallet MCP server under?

lol.metamuse/wallet declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.