Skip to main content
Glama

Stacks Clarity MCP Server

generate_sip010_template

Create production-ready SIP-010 fungible token contracts with security features and best practices for Stacks blockchain development.

Instructions

Generate a complete, production-ready SIP-010 fungible token contract template with all security features and best practices.

Input Schema

NameRequiredDescriptionDefault
decimalsYesNumber of decimal places (typically 6 for Stacks tokens)
includeMintingYesWhether to include admin minting/burning functions
initialSupplyYesInitial token supply (in whole tokens, not base units)
tokenNameYesThe human-readable name of the token (e.g., 'My Token')
tokenSymbolYesThe ticker symbol (e.g., 'MTK')

Input Schema (JSON Schema)

{ "properties": { "decimals": { "description": "Number of decimal places (typically 6 for Stacks tokens)", "maximum": 18, "minimum": 0, "type": "number" }, "includeMinting": { "description": "Whether to include admin minting/burning functions", "type": "boolean" }, "initialSupply": { "description": "Initial token supply (in whole tokens, not base units)", "minimum": 0, "type": "number" }, "tokenName": { "description": "The human-readable name of the token (e.g., 'My Token')", "type": "string" }, "tokenSymbol": { "description": "The ticker symbol (e.g., 'MTK')", "type": "string" } }, "required": [ "tokenName", "tokenSymbol", "decimals", "initialSupply", "includeMinting" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/exponentlabshq/stacks-clarity-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server