
Security News
pnpm 12’s Rust Rewrite Cuts Install Times by Up to 90%
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.
@moneolabs/mcp
Advanced tools
MCP server for Moneo: hand any agent host a guarded wallet and trading tools.
An MCP server that hands any agent host a guarded wallet — and, when you want it, trading — with keys the model never sees and a policy that runs before anything is signed. A refusal comes back as a result with a reason, not an exception, so the model reads why it was stopped instead of retrying into oblivion.
No API key, no account. The server generates a key on first run, keeps it at
~/.moneo/key.json, and prints the wallet address — fund it with USDG to pay or trade,
and keep a little ETH on Robinhood Chain for gas:
npx @moneolabs/mcp
claude mcp add moneo -- npx @moneolabs/mcp
{
"mcpServers": {
"moneo": {
"command": "npx",
"args": ["@moneolabs/mcp"]
}
}
}
Add the server under mcp_servers in ~/.hermes/config.yaml:
mcp_servers:
moneo:
command: "npx"
args: ["@moneolabs/mcp"]
Start hermes chat and the tools register as mcp_moneo_*. If you edit the config
mid-session, /reload-mcp picks it up without restarting.
| Tool | What it does |
|---|---|
get_balance | Balance and what is not already committed |
preflight_payment | Would this payment pass, without making it |
pay | Pay an address, invoice, or x402 endpoint; policy runs first |
get_spending_limits | Limits in force and what is left of each budget |
list_payments | Payments made this session |
get_quote | Price a trade across venues without committing |
execute_order | Quote and execute: market, limit, TWAP, or bracket |
list_positions | Open positions with cost basis and unrealized P&L |
close_position | Exit with the same guarantees as entry |
Environment variables, because MCP host configs pass env:
| Variable | Default | |
|---|---|---|
MONEO_AGENT | moneo-agent | Identity recorded on every decision |
MONEO_FUNDING | 5,000 USDG | Starting balance |
MONEO_ASSET | USDG | Default asset |
MONEO_POLICY | built-in cautious policy | Path to a policy JSON file |
{
"mcpServers": {
"moneo": {
"command": "npx",
"args": ["@moneolabs/mcp"],
"env": {
"MONEO_POLICY": "/etc/agents/overnight-policy.json",
"MONEO_FUNDING": "10,000 USDG"
}
}
}
}
A policy file is the same shape createGuard takes:
{
"perTransaction": { "max": "$400" },
"rolling24h": { "max": "$2,000" },
"velocity": { "max": 10, "per": "1h" },
"counterparties": "allowlist-only",
"allow": ["x402:*", "venue:*"],
"escalate": { "above": "$1,000" }
}
Robinhood Chain is the default, not a ceiling. The rail and the venue are interfaces — wire the server to whatever signer, rail, and venue you run instead:
import { createMcpServer, serveStdio } from "@moneolabs/mcp";
import { createGuard } from "@moneolabs/guard";
import { createWallet } from "@moneolabs/wallet";
const guard = createGuard(policy);
const wallet = await createWallet({ agent: "ops-03", signer, rail, guard });
await serveStdio(createMcpServer({ wallet, guard, trading }));
Part of Moneo: autonomous finance for AI agents on Robinhood Chain. MIT.
FAQs
MCP server for Moneo: hand any agent host a guarded wallet and trading tools.
The npm package @moneolabs/mcp receives a total of 54 weekly downloads. As such, @moneolabs/mcp popularity was classified as not popular.
We found that @moneolabs/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.

Research
/Security News
Thirteen malicious Packagist themes expose visitors on unpatched iPhones to a WebKit-to-kernel exploit chain that steals device data and wallet seeds.