Toleno MCP Server

Toleno Network MCP Server — Manage your Toleno account with Claude AI.

Local serverstdioGo

What is the Toleno MCP MCP server?

Toleno MCP MCP server exists for a simple reason — assistants are far more useful when they can act on Toleno MCP directly instead of describing what you should do. Toleno Network MCP Server — Manage your Toleno account with Claude AI.

What you get

The setup wizard will: 1. Ask for your Toleno API key 2. Validate it against the Toleno API 3. Automatically update your Claude Desktop config 4. Remind you to restart Claude Desktop

What the assistant can call

Once Toleno MCP is connected, these are the calls the assistant has available:

  • get_global_stats — Total tokens mined, platform-wide user count
  • get_profile — Your balance, mining power, streak, level
  • get_mining_status — Active session, time remaining, tokens earned
  • start_mining — Start a new 24-hour mining session
  • claim_mining — Claim rewards after a completed session
  • get_wallet_info — Wallet address, withdrawable balance, limits
  • get_referral_info — Referral code, team size, active referrals

Setting it up

The server ships on npm as @toleno/mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Configuration and credentials

You will need one environment variable: TOLENO_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Toleno MCP's toolset — get_global_stats, get_profile, get_mining_status and 4 more — is a fair guide to whether it matches your workflow. It is maintained by tolenonetwork; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Toleno MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the toleno mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
get_global_statsTotal tokens mined, platform-wide user count
get_profileYour balance, mining power, streak, level
get_mining_statusActive session, time remaining, tokens earned
start_miningStart a new 24-hour mining session
claim_miningClaim rewards after a completed session
get_wallet_infoWallet address, withdrawable balance, limits
get_referral_infoReferral code, team size, active referrals

How to install the Toleno MCP MCP server

{
  "mcpServers": {
    "toleno": {
      "command": "npx",
      "args": ["-y", "@toleno/mcp"],
      "env": {
        "TOLENO_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
TOLENO_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Toleno MCP to get global stats.
  • Use Toleno MCP to get profile.
  • Use Toleno MCP to get mining status.

Frequently asked questions

It connects Toleno MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (get_global_stats, get_profile, get_mining_status, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Toleno MCP directly.