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

seal-wallet-mcp-server

v0.1.1

Published

MCP server for Seal smart wallet — exposes on-chain wallet operations as AI-agent tools

Downloads

390

Readme

seal-wallet-mcp-server

Model Context Protocol (MCP) server for the Seal smart wallet on Solana. Exposes on-chain wallet operations as AI-agent tools — usable in VS Code (Copilot), Cursor, Claude Desktop, and any MCP-compatible client.

Quick Start

# Install and run
npx seal-wallet-mcp-server

VS Code / Cursor Configuration

Add to your MCP settings (.vscode/mcp.json or user settings):

{
  "servers": {
    "seal-wallet": {
      "command": "npx",
      "args": ["seal-wallet-mcp-server"]
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "seal-wallet": {
      "command": "npx",
      "args": ["seal-wallet-mcp-server"]
    }
  }
}

Available Tools

Wallet Operations

| Tool | Description | |------|-------------| | create_wallet | Create a new Seal smart wallet with spending limits | | get_wallet | Fetch wallet on-chain data (limits, guardians, status) | | update_spending_limits | Update daily and per-tx spending limits | | add_guardian | Add a guardian for social recovery | | lock_wallet | Lock or unlock delegated execution on the wallet | | remove_guardian | Remove a guardian and clamp the threshold if needed | | close_wallet | Permanently close wallet and return rent |

Agent Operations

| Tool | Description | |------|-------------| | register_agent | Register an AI agent with scoped permissions | | get_agent_config | Fetch agent configuration and limits | | deregister_agent | Remove an agent from the wallet |

Session Operations

| Tool | Description | |------|-------------| | create_session | Create a time-limited, budget-capped session key | | get_session | Check session status, expiry, and remaining budget | | revoke_session | Revoke an active session |

Execute Operations

| Tool | Description | |------|-------------| | execute_via_session | Execute a CPI through a session key (core autonomous operation) |

PDA Derivation (offline)

| Tool | Description | |------|-------------| | derive_wallet_pda | Derive wallet PDA from owner key | | derive_agent_pda | Derive agent config PDA | | derive_session_pda | Derive session PDA |

Recovery

| Tool | Description | |------|-------------| | recover_wallet | Guardian-initiated owner rotation | | set_recovery_threshold | Configure how many guardians must co-sign recovery |

Resources

The server also exposes read-only resources:

  • seal://program-info — Program ID, network, SDK info
  • seal://architecture — Account hierarchy, spending limit model, session flow

Prompts

  • setup-autonomous-agent — Step-by-step guide for setting up an autonomous trading agent

Security

  • Secret keys are passed per-call and never stored by the server
  • Session keys are ephemeral — use create_session to generate one, then execute_via_session with it
  • Spending limits are enforced on-chain at three layers: wallet, agent, and session
  • Allowed programs follow a default-closed model — agents can only CPI into explicitly allowed programs

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
node dist/index.js

License

Apache-2.0