metaplex-nft_deployCollection
InactiveTool of SAP MCP Server
Deploy a new NFT collection via Metaplex. Returns the collection mint and metadata addresses. SAP MCP context: Protocol metaplex-nft; operation class write. Use for Metaplex NFT collection, mint, metadata, royalty, creator verification, collection verification, and authority workflows. Confirm metadata URI, collection mint, creators, royalties, update authority, and ownership before writes. For agent identity, plan with sap_agent_identity_plan, register the SAP on-chain profile through sap_payments_register_agent, then use agentUri or metadataUri to point at off-chain or NFT-backed metadata. Use these Metaplex tools when the agent also needs an NFT collection, badge, or verifiable media asset.
Parameters schema
{
"type": "object",
"required": [
"authority",
"name",
"symbol",
"uri"
],
"properties": {
"uri": {
"type": "string",
"description": "URI to collection metadata JSON"
},
"name": {
"type": "string",
"description": "Collection name"
},
"symbol": {
"type": "string",
"description": "Collection symbol"
},
"creators": {
"type": "array",
"items": {
"type": "object",
"required": [
"address",
"share"
],
"properties": {
"share": {
"type": "number",
"description": "Revenue share percentage"
},
"address": {
"type": "string",
"description": "Solana public key (base58)"
},
"verified": {
"type": "boolean",
"description": "Verified parameter for Metaplex-nft Deploy Collection."
}
},
"description": "Creators parameter for Metaplex-nft Deploy Collection.",
"additionalProperties": false
},
"description": "Creator list with revenue shares (must sum to 100)"
},
"authority": {
"type": "string",
"description": "Collection authority wallet"
},
"isMutable": {
"type": "boolean",
"description": "Is Mutable parameter for Metaplex-nft Deploy Collection."
},
"maxSupply": {
"type": "number",
"description": "Max NFTs in collection (0 = unlimited)"
},
"sellerFeeBasisPoints": {
"type": "number",
"description": "Royalty fee in bps (500 = 5%)"
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
SAP MCP Server
https://github.com/OOBE-PROTOCOL/sap-mcp
2/7 registries