sage-nft
Sage NFT operations. List NFTs and collections, mint NFTs, transfer, add URIs, assign to DIDs, manage visibility.
Install
mkdir -p .claude/skills/sage-nft && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8406" && unzip -o skill.zip -d .claude/skills/sage-nft && rm skill.zipInstalls to .claude/skills/sage-nft
About this skill
Sage NFTs
NFT operations for Chia NFT1 standard.
Endpoints
Query NFTs
| Endpoint | Payload | Description |
|---|---|---|
get_nfts | See below | List NFTs with filters |
get_nft | {"nft_id": "nft1..."} | Get NFT details |
get_nft_icon | {"nft_id": "nft1..."} | Get icon (base64) |
get_nft_thumbnail | {"nft_id": "nft1..."} | Get thumbnail (base64) |
get_nft_data | {"nft_id": "nft1..."} | Get raw data |
get_nfts Payload
{
"collection_id": null,
"minter_did_id": null,
"owner_did_id": null,
"name": null,
"offset": 0,
"limit": 50,
"sort_mode": "recent",
"include_hidden": false
}
Sort modes: "name", "recent"
Collections
| Endpoint | Payload | Description |
|---|---|---|
get_nft_collections | {"offset": 0, "limit": 50, "include_hidden": false} | List collections |
get_nft_collection | {"collection_id": "col1..."} | Get collection |
update_nft_collection | {"collection_id": "col1...", "visible": true} | Update visibility |
Mint NFTs
{
"mints": [
{
"address": null,
"edition_number": 1,
"edition_total": 100,
"data_hash": "0x...",
"data_uris": ["https://..."],
"metadata_hash": "0x...",
"metadata_uris": ["https://..."],
"license_hash": null,
"license_uris": [],
"royalty_address": "xch1...",
"royalty_ten_thousandths": 300
}
],
"did_id": "did:chia:...",
"fee": "100000000",
"auto_submit": true
}
Response includes nft_ids array.
Transfer & Manage
| Endpoint | Payload | Description |
|---|---|---|
transfer_nfts | {"nft_ids": [...], "address": "xch1...", "fee": "...", "auto_submit": true} | Transfer |
add_nft_uri | {"nft_id": "...", "uri": "https://...", "kind": "data", "fee": "..."} | Add URI |
assign_nfts_to_did | {"nft_ids": [...], "did_id": "did:chia:...", "fee": "..."} | Assign to DID |
update_nft | {"nft_id": "...", "visible": true} | Update visibility |
redownload_nft | {"nft_id": "..."} | Re-fetch data |
URI kinds: "data", "metadata", "license"
NFT Record Structure
{
"nft_id": "nft1...",
"launcher_id": "0x...",
"collection_id": "col1...",
"owner_did_id": "did:chia:...",
"minter_did_id": "did:chia:...",
"name": "My NFT",
"description": "...",
"data_uris": ["https://..."],
"metadata_uris": ["https://..."],
"royalty_address": "xch1...",
"royalty_ten_thousandths": 300,
"visible": true
}
Examples
# List NFTs
sage_rpc get_nfts '{"limit": 20, "sort_mode": "recent"}'
# Mint NFT
sage_rpc bulk_mint_nfts '{
"mints": [{
"data_uris": ["ipfs://Qm..."],
"data_hash": "0xabc...",
"metadata_uris": ["ipfs://Qm..."],
"metadata_hash": "0xdef...",
"royalty_ten_thousandths": 500
}],
"did_id": "did:chia:1abc...",
"fee": "100000000",
"auto_submit": true
}'
# Transfer NFT
sage_rpc transfer_nfts '{
"nft_ids": ["nft1abc..."],
"address": "xch1recipient...",
"fee": "100000000",
"auto_submit": true
}'
Notes
- Royalty is in ten-thousandths: 300 = 3%, 500 = 5%
did_id: nullinassign_nfts_to_didunassigns from DID- Minting requires a DID for provenance
More by openclaw
View all skills by openclaw →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversExtend your developer tools with GitHub MCP Server for advanced automation, supporting GitHub Student and student packag
Solana Agent Kit: Easily deploy tokens, mint NFTs, and manage DeFi & cross-chain tasks with Solana integration in chat i
Connect MongoDB databases to chat interfaces. Manage AWS with MongoDB, explore Atlas cost, and inspect collections secur
Integrate Zotero: a leading citator tool for managing citations, collections, and research papers with the powerful soft
Streamline digital file organization with Paperless-NGX, a powerful document management software for efficient document
Access the Discogs website to search music databases, manage your collection, and browse marketplace listings with detai
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.