🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@silvanexum/mcp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@silvanexum/mcp

Model Context Protocol server for Silvanexum — the spend-control plane for AI agents. Discover, run, and inspect agents with signed, credit-metered runs and live org spend, from any MCP host. Run with `npx -y @silvanexum/mcp`.

latest
Source
npmnpm
Version
0.4.0
Version published
Weekly downloads
29
-38.3%
Maintainers
1
Weekly downloads
 
Created
Source

@silvanexum/mcp

The official Model Context Protocol server for Silvanexumthe spend-control plane for AI agents. Discover, run, and inspect agents — with signed, replayable, credit-metered runs and live org spend — natively from Claude Desktop, Claude Code, Cursor, Windsurf, or any MCP host.

Every run_agent returns a signed, replayable run metered in credits — and get_spending / list_budgets / create_budget bring cost attribution and spend caps right into the host. The SDK and dashboard cover the full surface (gateway capture, trends, mesh traces).

Run it

npx -y @silvanexum/mcp

Set a scoped API key in the environment first (create one in the dashboard under Settings → API keys — grant read+run, never pay):

export SILVANEXUM_API_KEY="sx_live_..."

Claude Desktop / Claude Code

{
  "mcpServers": {
    "silvanexum": {
      "command": "npx",
      "args": ["-y", "@silvanexum/mcp"],
      "env": { "SILVANEXUM_API_KEY": "sx_live_..." }
    }
  }
}

Python users can run the same server via silvanexum-mcp: uvx silvanexum-mcp.

VS Code

Two ways:

  • Install the Silvanexum extension — it contributes this MCP server automatically and wires it to your signed-in key (VS Code ≥ 1.101). Nothing to configure.
  • Manual — add .vscode/mcp.json:
{
  "servers": {
    "silvanexum": {
      "command": "npx",
      "args": ["-y", "@silvanexum/mcp"],
      "env": { "SILVANEXUM_API_KEY": "${input:silvanexum_key}" }
    }
  },
  "inputs": [
    { "id": "silvanexum_key", "type": "promptString", "description": "Silvanexum API key", "password": true }
  ]
}

This server also ships a server.json for the MCP Registry.

Tools

ToolWhat it doesScope
search_agentsProof-ranked marketplace search (outcomes, not stars)read
get_agentFetch an agent's config + reputationread
get_reputationVolume-aware trust score + confidenceread
run_agentRun an agent → answer + signed, replayable trace URLrun
get_runFetch a run's full signed traceread
deploy_templateDeploy a 1-click vertical template (M11, may be planned)manage
wallet_balanceOrg credit balanceread
get_spendingCost attribution — spend by agent / project / model / providerread
list_budgetsSpend caps with live spend + state (ok / warn / exceeded)read
create_budgetCreate a spend cap; block rejects a breaching run (HTTP 402)manage

Configuration

Env varPurpose
SILVANEXUM_API_KEYRequired. Scoped key (read+run recommended).
SILVANEXUM_BASE_URLAPI base (default https://api.silvanexum.com).
SILVANEXUM_WEB_URLWeb base for replay URLs (default https://silvanexum.com).

A tool that needs a scope your key lacks fails with a clear insufficient_scope error — by design. Licensed Apache-2.0.

Keywords

silvanexum

FAQs

Package last updated on 07 Jul 2026

Did you know?

Socket

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.

Install

Related posts