npm @smeltr/mcp-serverstdioupdated 1mo ago
Non-custodial Token-2022 deployment infrastructure for Solana.
What can you do with Smeltr Token 2022?
Smeltr
Non-custodial Token-2022 deployment infrastructure for Solana.
The non-custodial guarantee: Smeltr builds transaction instructions.
Your wallet signs them. assertNoPlatformAuthority() runs on every
authority field in every module before any instruction is constructed,
and the source for that check lives in packages/module-registry in
this repository — the guarantee is inspectable, not just asserted.
Extensions: Transfer Fee · Non-Transferable · Permanent Delegate · Arweave metadata
Setup
npm install
cp .env.example apps/web/.env
# fill in DATABASE_URL, SESSION_JWT_SECRET, NEXT_PUBLIC_APP_DOMAIN, etc.
# Generate the Prisma client + run migrations (from apps/web)
cd apps/web
npx prisma generate
npx prisma migrate dev
cd ../..
npm run dev
Testing
# Unit tests (no validator needed)
npm run test:registry
# Full CI suite (registry unit + web route/lib tests)
npm run test:ci
# Devnet integration test (requires `solana-test-validator` running locally)
cd packages/tx-builder && npm run test:devnet
MCP server (AI assistants)
Smeltr exposes its Token-2022 validation engine as an MCP server for Claude Desktop, Cursor, and other assistants.
npx -y @smeltr/mcp-server
Docs: https://smeltr.org/docs/mcp · Source: packages/mcp-server · Launch guide: docs/MCP_LAUNCH.md
Status
The core deploy flow (module selection -> metadata -> review -> sign ->
add metadata -> dashboard/resume) is implemented end to end and covered
by the npm run test:ci suite. See CLAUDE.md for architecture context
and docs/INVARIANTS.md for the review checklist.
Install
Add Smeltr Token 2022 to your client. Pick the one you use.
claude mcp add mcp-server -- npx -y @smeltr/mcp-servercodex mcp add mcp-server -- npx -y @smeltr/mcp-serveramp mcp add mcp-server -- npx -y @smeltr/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-server","command":"npx","args":["-y","@smeltr/mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@smeltr/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @smeltr/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 45 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Jul 4, 2026 |