
Research
/Security News
Popular npm Packages in the keyv and Cacheable Namespaces Compromised in Active Supply Chain Attack
Popular npm packages keyv and cacheable compromised.
@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 sandbox serves a funded wallet on an in-memory ledger with test funds and a simulated venue:
npx @moneolabs/mcp
claude mcp add moneo -- npx @moneolabs/mcp
{
"mcpServers": {
"moneo": {
"command": "npx",
"args": ["@moneolabs/mcp"]
}
}
}
| 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 | sandbox-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" }
}
The sandbox is a default, not a ceiling. Wire the server to whatever signer and rail you run in production:
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 26 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.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.

Security News
/Company News
Socket has joined the new Composer and Packagist sponsorship program as a launch sponsor, supporting the team that keeps PHP's package ecosystem secure.