Provides programmatic access to MNEE balances, transfers, and history via MCP tools.
Configuration
View docs{
"mcpServers": {
"0xbohu-qilinx-mcp-mnee-repo": {
"url": "https://qilin-mcp-mnee.vercel.app/api/mcp"
}
}
}You can integrate the MNEE MCP Server to let AI agents interact with the MNEE stablecoin on Bitcoin SV. It enables balance checks, transfers, and transaction history queries, all through standardized MCP tools that operate in sandbox or production environments.
You use an MCP client to talk to the MNEE MCP Server. First obtain an API token from your account settings in the MNEE Agent Dashboard. Then configure your MCP client with the remote MCP endpoint and your token. With the client, you can check balances, transfer MNEE tokens, review transaction history, and access token configuration and fee tiers. All actions support sandbox testing by default and can be run against production when you are ready.
Prerequisites: ensure you have Node.js and npm installed on your workstation.
1) Install the MCP client tooling as needed by your setup. If you are using a desktop client, you will typically install the tool via npm or npx as shown in the configuration examples.
2) Obtain your API token from your MNEE Agent Dashboard account settings and keep it secure.
3) Configure your MCP client to point at the remote MCP endpoint and include your API token in the authorization header. Use the provided configuration example as a template.
4) Verify connectivity by starting the client and sending a test command. If you receive a successful response, you are ready to start issuing tool requests against the MNEE MCP Server.
5) Test in sandbox first. When you are confident, switch to production by selecting the production environment in your client configuration.
Environment: all MCP tools accept an environment parameter. Use sandbox for testing and production for live operation. The default is sandbox if not specified.
Get the current user's wallet address. This tool requires authentication and returns the address associated with your session.
Check the MNEE balance for a specified Bitcoin SV address. Useful for quick balance checks before transfers.
Transfer MNEE tokens to a recipient address. Requires wallet configuration and sufficient balance.
Check the status of a transfer or ticket by its ticketId to verify completion or failure.
Retrieve UTXOs for a given address with pagination to inspect spendable outputs.
Fetch recent transaction history for a given address to review activity.
Query current transaction fee tiers to estimate costs for transfers.
Obtain the MNEE token configuration details, such as decimals and token identifiers.
Get the fee, burn, and mint addresses associated with MNEE operations.
Retrieve the approver public key used for authorization of sensitive operations.