API Key dapp Methods

Brickken MCP Server for API Key dapp Methods

Use a Brickken API key from your MCP client to access tokenization, STO, security-token, transaction, and read-only dapp workflows through the hosted Brickken MCP server.

Official Brickken docs CLI on npm

1. Add the MCP server

Register the Brickken hosted endpoint in your MCP client.

{
  "mcpServers": {
    "brickken": {
      "url": "https://mcp.brickken.com/mcp"
    }
  }
}

2. Configure production

Call the configure tool with your Brickken API key and production environment.

{
  "env": "production",
  "apiKey": "YOUR_BRICKKEN_API_KEY"
}

Sandbox configuration

Use sandbox credentials when testing dapp workflows before moving the same MCP session pattern to production. Use get_config after configuration to verify the active environment, base URL, and whether an API key is present. Secret values are not returned.

{
  "env": "sandbox",
  "apiKey": "YOUR_SANDBOX_API_KEY"
}

dapp tool groups

These tools use the configured Brickken API session for tokenization, offerings, token operations, transaction workflows, and reads.

Tokenization and STOs

Primary issuance workflows

  • create_tokenization
  • create_sto
  • invest_in_sto
  • claim_sto
  • close_sto
Security-token operations

Lifecycle and holder actions

  • mint_tokens
  • whitelist_investor
  • burn_tokens
  • transfer_tokens
  • approve_tokens
  • distribute_dividend
Transactions

Prepare, submit, and inspect

  • prepare_transactions
  • send_transactions
  • get_transaction_status
Read tools

Network, token, STO, and investor data

  • get_network_info
  • get_token_info
  • get_tokenizer_info
  • get_stos
  • get_sto_by_id
  • get_investments_by_sto_id
  • get_investor_info
  • get_allowance
  • get_whitelist_status
  • get_balance_whitelist
  • get_sto_balance
  • get_dividend_info