npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vallum/mcp-server

v0.1.1

Published

MCP tool facade for Vallum sponsored IOTA actions.

Readme

@vallum/mcp-server

MCP tool facade for Vallum sponsored IOTA actions.

This package exposes tool descriptors and a local callable server facade that routes sponsored actions through the Vallum SDK and policy gateway. It does not directly call IOTA, Gas Station, or transaction submission APIs.

Install

For the npm release, install:

npm install @vallum/mcp-server

Current Status

This source package builds both:

  • a programmatic MCP-shaped facade; and
  • a stdio CLI bin, vallum-mcp, for local MCP hosts.

The CLI reads gateway configuration from the MCP server process environment and routes tool calls through the Vallum SDK and policy gateway. It does not directly call IOTA, Gas Station, or transaction submission APIs.

The already-published 0.0.0-prerelease package predates this runnable bin. The runnable MCP package is published on the official 0.1.1 package line through the npm latest dist-tag. Registry install plus local stdio execution is covered by npm run smoke:npm-registry-mcp-stdio-consumer.

Usage

Run the stdio server from a package install or local tarball consumer:

VALLUM_GATEWAY_URL=http://127.0.0.1:8787 \
VALLUM_API_KEY=replace-with-server-side-secret \
npm exec -- vallum-mcp

Use placeholders in MCP host configuration files. Do not commit real VALLUM_API_KEY values.

The programmatic facade remains available:

import { createIotaMcpServer } from "@vallum/mcp-server";

const server = createIotaMcpServer({
  gatewayBaseUrl: process.env.VALLUM_GATEWAY_URL!,
  apiKey: process.env.VALLUM_API_KEY!,
});

const tools = server.listTools();
const result = await server.callTool("iota.request_sponsored_transaction", {
  manifest,
});

Keep VALLUM_API_KEY, Gas Station bearer tokens, sponsor keys, raw transaction bytes, and user signatures server-side. See https://github.com/0xCozart/vallum/blob/main/docs/vallum/package-integration-guide.md for the full package map and configuration boundary.