- Home
- MCP servers
- MNEE
MNEE
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
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.
How to use
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.
How to install
Prerequisites: ensure you have Node.js and npm installed on your workstation.
-
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.
-
Obtain your API token from your MNEE Agent Dashboard account settings and keep it secure.
-
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.
-
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.
-
Test in sandbox first. When you are confident, switch to production by selecting the production environment in your client configuration.
Additional configuration and usage notes
Environment: all MCP tools accept an environment parameter. Use sandbox for testing and production for live operation. The default is sandbox if not specified.
Available tools
get_my_wallet_address
Get the current user's wallet address. This tool requires authentication and returns the address associated with your session.
check_balance
Check the MNEE balance for a specified Bitcoin SV address. Useful for quick balance checks before transfers.
transfer
Transfer MNEE tokens to a recipient address. Requires wallet configuration and sufficient balance.
check_tx_status
Check the status of a transfer or ticket by its ticketId to verify completion or failure.
get_utxos
Retrieve UTXOs for a given address with pagination to inspect spendable outputs.
get_tx_history
Fetch recent transaction history for a given address to review activity.
get_fee_tiers
Query current transaction fee tiers to estimate costs for transfers.
get_token_config
Obtain the MNEE token configuration details, such as decimals and token identifiers.
get_special_addresses
Get the fee, burn, and mint addresses associated with MNEE operations.
get_approver_key
Retrieve the approver public key used for authorization of sensitive operations.