- Home
- MCP servers
- Toleno Network
Toleno Network
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 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.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"tolenonetwork-toleno-mcp": {
"command": "npx",
"args": [
"-y",
"@toleno/mcp"
],
"env": {
"NODE_ENV": "production",
"TOLENO_API_KEY": "YOUR_API_KEY"
}
}
}
}This Toleno Network MCP Server lets you control your Toleno mining account directly from Claude AI using natural language. You can check balances, start mining, view referrals, and more without leaving your chat interface.
How to use
You interact with the MCP server through an MCP client (such as Claude) to issue high-level requests like checking your mining status, starting a new mining session, or retrieving your wallet information. The server exposes a set of actions that you can request in natural language, and it handles the underlying data retrieval and actions on Toleno’s platform. Use straightforward prompts such as “What is my Toleno mining status?”, “Start mining”, “Show my wallet info”, or “How many referrals do I have?” to receive concise, actionable responses.
How to install
Prerequisites: make sure you have Node.js 18 or higher installed on your machine.
Install the MCP server command-line tool using the following non-interactive setup command.
npx @toleno/mcp setup
Or perform a non-interactive setup by supplying your API key directly.
npx @toleno/mcp setup --key tlno_your_key_here
Configuration and usage notes
Add the MCP configuration to your Claude Desktop or project configuration to specify how to run the MCP client and provide your API key.
Claude Desktop configuration (example): provide an MCP server named “Toleno Network” with the proper command, arguments, and API key.
{
"mcpServers": {
"Toleno Network": {
"command": "npx",
"args": ["-y", "@toleno/mcp"],
"env": {
"TOLENO_API_KEY": "tlno_paste_your_key_here"
}
}
}
}
Security and key management
Your API key is stored locally in the Claude config file and is never sent to Claude’s servers. You can revoke it at any time from the Toleno app.
Troubleshooting
If you see a message like 'TOLENO_API_KEY is not configured', re-run the setup or manually add the key to your config.
If the tools do not appear in Claude Desktop, fully quit and restart Claude Desktop after completing the setup. Look for the hammer icon in the chat toolbar.
Example session
You: What is my mining status?
Claude: Your mining session is active! Started: 3 hours ago | Time remaining: 21 hours | Earned so far: 3.5 / 28 TOL
Next steps
Obtain your API key from the Toleno app under Settings → API Keys, then use the setup flow to connect Claude to Toleno through the MCP server. You can then query status, start mining, and review referrals from Claude.
Available tools
get_global_stats
Fetches total tokens mined and platform-wide user counts.
get_profile
Retrieves your balance, mining power, streak, and level.
get_mining_status
Returns active session details, time remaining, and tokens earned.
start_mining
Begins a new 24-hour mining session.
get_wallet_info
Provides wallet address, withdrawable balance, and any applicable limits.
get_referral_info
Returns your referral code, team size, and active referrals.