MCP Hub
Back to servers

qilinx-mcp-mnee-repo

A specialized MCP server for interacting with the MNEE stablecoin on Bitcoin SV, enabling AI agents to manage wallets, transfer tokens, and query transaction data across sandbox and production environments.

Tools
10
Updated
Jan 5, 2026
Validated
Jan 11, 2026

MNEE MCP Server

A Model Context Protocol (MCP) streamHttp server for interacting with MNEE stablecoin on Bitcoin SV. This server enables AI agents to check balances, transfer tokens, and query transaction history.

Features

  • Check MNEE balance for any address
  • Transfer MNEE tokens (requires wallet configuration)
  • Get transaction history and UTXOs
  • Query fee tiers and token configuration
  • Supports sandbox and production environments

Available MCP Tools

ToolDescriptionAuth Required
get_my_wallet_addressGet current user's wallet addressYes
check_balanceCheck MNEE balance for a Bitcoin addressYes
transferTransfer MNEE tokens to a recipientYes
check_tx_statusCheck transaction status by ticketIdYes
get_utxosGet UTXOs for an address (paginated)Yes
get_tx_historyGet recent transaction historyYes
get_fee_tiersGet transaction fee tiersYes
get_token_configGet MNEE token configurationYes
get_special_addressesGet fee, burn, and mint addressesYes
get_approver_keyGet approver public keyYes

Using MCP Server in MNEE Agent Dashboard

MCP Tools are automatically integrated in agent chats in MNEE Agent Dashboard , you do not need additional configuration for MCP server configuration

Connecting MCP Server via external Desktop/AI tool

Get Your API Token

  1. Go to MNEE Agent Dashboard
  2. Navigate to your account settings
  3. Copy your API token

Configure Your MCP Client

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mnee": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://qilin-mcp-mnee.vercel.app/api/mcp",
        "--header",
        "Authorization: Bearer YOUR_API_TOKEN"
      ]
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "mnee": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://qilin-mcp-mnee.vercel.app/api/mcp",
        "--header",
        "Authorization: Bearer YOUR_API_TOKEN"
      ]
    }
  }
}

Tool Examples

Check Balance

{
  "tool": "check_balance",
  "arguments": {
    "address": "1G6CB3Ch4zFkPmuhZzEyChQmrQPfi86qk3",
    "environment": "sandbox"
  }
}

Transfer MNEE

{
  "tool": "transfer",
  "arguments": {
    "toAddress": "1RecipientAddress...",
    "amount": 10.5,
    "environment": "sandbox"
  }
}

Get Transaction History

{
  "tool": "get_tx_history",
  "arguments": {
    "address": "1G6CB3Ch4zFkPmuhZzEyChQmrQPfi86qk3",
    "limit": 5,
    "environment": "sandbox"
  }
}

Testing

Use the MCP Inspector to test your server:

npx @modelcontextprotocol/inspector

Environment Options

All tools support an environment parameter:

  • sandbox (default) - Test environment
  • production - Live environment

License

See LICENSE for details.

Reviews

No reviews yet

Sign in to write a review