MNEE MCP Server
Enables AI agents to interact with MNEE stablecoin on Bitcoin SV, including checking balances, transferring tokens, and querying transaction history in both sandbox and production environments.
README
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
| Tool | Description | Auth Required |
|---|---|---|
get_my_wallet_address |
Get current user's wallet address | Yes |
check_balance |
Check MNEE balance for a Bitcoin address | Yes |
transfer |
Transfer MNEE tokens to a recipient | Yes |
check_tx_status |
Check transaction status by ticketId | Yes |
get_utxos |
Get UTXOs for an address (paginated) | Yes |
get_tx_history |
Get recent transaction history | Yes |
get_fee_tiers |
Get transaction fee tiers | Yes |
get_token_config |
Get MNEE token configuration | Yes |
get_special_addresses |
Get fee, burn, and mint addresses | Yes |
get_approver_key |
Get approver public key | Yes |
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
- Go to MNEE Agent Dashboard
- Navigate to your account settings
- 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 environmentproduction- Live environment
License
See LICENSE for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.