
Sdk Js
- 1 repo stars
- Updated April 20, 2026
- klever-io/klever-marketplace
Build Klever wallet integrations into React web apps and Node.js services using the Klever Connect SDK.
About
sdk-js helps you build Klever wallet integrations for React web apps and Node.js services using the Klever Connect SDK. A developer uses it to wire Klever blockchain wallet functionality into their frontend or backend. It focuses on the integration code for connecting apps to Klever.
- Klever Connect SDK
- React web + Node.js
- Wallet integrations
- Web3
Sdk Js by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add klever-io/klever-marketplace/plugin install sdk-js@klever-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | April 20, 2026 |
| Repository | klever-io/klever-marketplace ↗ |
What it does
Build Klever wallet integrations into React web apps and Node.js services using the Klever Connect SDK.
README.md
Klever Marketplace for Claude Code
The official Claude Code plugin marketplace for Klever. Install Klever's plugins to connect Claude Code to on-chain data, smart contracts, and developer tooling in the Klever ecosystem.
Quick start
From inside Claude Code, add the marketplace:
/plugin marketplace add klever-io/klever-marketplace
Then browse and install plugins:
/plugin
Or install a specific plugin directly:
/plugin install klever-vm@klever-marketplace
After installation, restart Claude Code (or run /plugin to enable) and the plugin's tools will appear in your session.
Available plugins
| Plugin | Description | Install |
|---|---|---|
klever-vm |
HTTP MCP server at https://mcp.klever.org/mcp that exposes Klever VM data and tooling to Claude |
/plugin install klever-vm@klever-marketplace |
sdk-js |
Build Klever wallet integrations for React web apps and Node.js services using the Klever Connect SDK | /plugin install sdk-js@klever-marketplace |
CLI alternatives
All marketplace operations are also available from the terminal:
# Add the marketplace
claude plugin marketplace add klever-io/klever-marketplace
# Install a plugin
claude plugin install klever-vm@klever-marketplace
# List installed plugins
claude plugin list
# Update the marketplace catalog
claude plugin marketplace update klever-marketplace
# Uninstall a plugin
claude plugin uninstall klever-vm@klever-marketplace
You can also install the MCP server directly (without the plugin wrapper) using:
claude mcp add -t http klever-vm https://mcp.klever.org/mcp
Installing through the marketplace is recommended because it groups Klever tooling under a single catalog, tracks versions, and enables one-click updates.
Repository layout
klever-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog (lists all plugins)
├── plugins/
│ └── klever-vm/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ └── .mcp.json # MCP server definition
└── README.md
.claude-plugin/marketplace.jsonis the catalog Claude Code reads when users run/plugin marketplace add.- Each plugin lives in
plugins/<plugin-name>/with its own.claude-plugin/plugin.jsonmanifest. - Plugins that bundle an MCP server declare it in
.mcp.jsonat the plugin root.
Adding a new plugin
- Create a new directory under
plugins/(kebab-case name, no spaces). - Add
.claude-plugin/plugin.jsonwith at minimum anameandversion. - Drop plugin components into the plugin root:
.mcp.jsonfor MCP serversskills/<name>/SKILL.mdfor skillscommands/*.mdfor slash commandsagents/*.mdfor subagentshooks/hooks.jsonfor lifecycle hooks
- Register the plugin in
.claude-plugin/marketplace.jsonby adding an entry to thepluginsarray with a relativesourcepath. - Validate locally:
claude plugin validate . - Test locally before publishing:
/plugin marketplace add ./klever-marketplace /plugin install <your-plugin>@klever-marketplace
Plugin manifest example
plugins/<plugin-name>/.claude-plugin/plugin.json:
{
"name": "plugin-name",
"version": "1.0.0",
"description": "What this plugin does",
"author": { "name": "Klever" },
"mcpServers": "./.mcp.json"
}
MCP server configuration
For an HTTP MCP server, plugins/<plugin-name>/.mcp.json:
{
"mcpServers": {
"server-id": {
"type": "http",
"url": "https://your-mcp-endpoint/mcp"
}
}
}
For a local command-based MCP server, use command and args instead of type/url. Use ${CLAUDE_PLUGIN_ROOT} to reference files bundled with the plugin.
References
License
MIT