# dev.xroot/token-operations (remote · api.xroot.dev)

Read-only Solana and Robinhood Chain tools: wallet recovery, token safety, unlocks, upgrades, fees.

- Trust score: 72/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- remote · `api.xroot.dev`: 72/100 (this document), [markdown](https://verifymcp.io/servers/dev-xroot-token-operations/api.md), [page](https://verifymcp.io/servers/dev-xroot-token-operations/api)
- remote · `api.xroot.dev`: 66/100, [markdown](https://verifymcp.io/servers/dev-xroot-token-operations/api-2.md), [page](https://verifymcp.io/servers/dev-xroot-token-operations/api-2)

## Channel facts

- Endpoint: `https://api.xroot.dev/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.1.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-20.

- **Endpoint Security**: 77/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1803 tokens (~100/item across 18 items; 18 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 3/100
  - Stability observed for 1 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 18 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 19 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### How do I install the dev.xroot/token-operations MCP server?

dev.xroot/token-operations is a hosted endpoint at https://api.xroot.dev/mcp, so there is nothing to install locally. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add --transport http dev-xroot-token-operations 'https://api.xroot.dev/mcp'
```

### Cursor

```json
{
  "mcpServers": {
    "dev-xroot-token-operations": {
      "url": "https://api.xroot.dev/mcp"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "dev-xroot-token-operations": {
      "type": "http",
      "url": "https://api.xroot.dev/mcp"
    }
  }
}
```

### Codex

```toml
[mcp_servers.dev-xroot-token-operations]
url = "https://api.xroot.dev/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev-xroot-token-operations": {
      "type": "remote",
      "url": "https://api.xroot.dev/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dev-xroot-token-operations --url 'https://api.xroot.dev/mcp' --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  dev-xroot-token-operations:
    url: "https://api.xroot.dev/mcp"
```

### Netclaw

```json
{
  "McpServers": {
    "dev-xroot-token-operations": {
      "Transport": "http",
      "Url": "https://api.xroot.dev/mcp"
    }
  }
}
```

### Vellum

```bash
assistant mcp add dev-xroot-token-operations -t streamable-http -u 'https://api.xroot.dev/mcp'
```

### Other

```json
{
  "mcpServers": {
    "dev-xroot-token-operations": {
      "type": "http",
      "url": "https://api.xroot.dev/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-20 (score 72, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-09-19 (score 72)

First indexed and scored.

## MCP tools (18)

### `check_wallet` (~210 tokens)

Check wallet

Read everything a wallet can get back, in one call: on Solana, the rent in empty token accounts, the surplus the rent cut left, wrapped SOL, failed-deploy buffers, closable programs, lookup tables, dead Meteora positions, subscriptions, LP fees waiting on Orca, Meteora and locked Raydium positions, standing token delegates (a risk, not money), transfer-tax tokens it launched, and permissioned tokens it can unlock; on Robinhood Chain, LP fees, creator fees, bridge withdrawals and wrapped ETH. Every venue is read independently and reports ok, failed or unavailable, so a failed read is never mistaken for nothing there. Use it for "what can this wallet recover"; use the per-venue tools for one venue in detail.

Input parameters:

- `address` (string, required): The wallet address: a base58 public key on Solana, a 0x address on Robinhood Chain.
- `chain` (string): Which chain the address lives on. Defaults to solana.

### `check_reclaimable_rent` (~91 tokens)

Check reclaimable rent

Read how much SOL a Solana wallet can reclaim from rent: the deposits parked in its empty token accounts, and the surplus the rent cut left in accounts it still uses. Returns counts and net figures in SOL. Nothing is closed or moved.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_wrapped_sol` (~77 tokens)

Check wrapped SOL

Read the wrapped SOL (wSOL) sitting in a Solana wallet's token accounts, and what unwrapping it back to SOL returns net of fees. Nothing is unwrapped.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_token_delegates` (~79 tokens)

Check token delegates

List the standing token delegates and approvals on a Solana wallet — programs still allowed to move its tokens. A risk read, not money: revoking returns no SOL. Nothing is revoked.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_failed_deploys` (~75 tokens)

Check failed deploys

Read the program buffer accounts left behind by a Solana wallet's failed or interrupted program deploys, and the SOL recovering them returns net of fees. Nothing is recovered.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_closable_programs` (~78 tokens)

Check closable programs

Read the upgradeable programs a Solana wallet holds the upgrade authority for, and the gross rent their bytecode accounts hold. Closing a program is permanent, so this reads only.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_lookup_tables` (~79 tokens)

Check lookup tables

Read the address lookup tables a Solana wallet owns: how many are ready to close, cooling down, or still active, and the gross rent each group holds. Nothing is deactivated or closed.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_lp_fees` (~102 tokens)

Check LP fees

Count a Solana wallet's liquidity positions with trading fees waiting to be claimed, per venue: Orca Whirlpools, Meteora, and locked Raydium liquidity. Fees are owed in many different tokens, so the answer is a count of positions, never a summed figure. Nothing is claimed.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_dlmm_positions` (~83 tokens)

Check Meteora positions

Read a Solana wallet's Meteora DLMM and DAMM v2 positions by status, and the gross SOL deposit held by their position accounts — what closing a dead position returns before fees. Nothing is closed.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_subscriptions` (~68 tokens)

Check subscriptions

Read the on-chain subscriptions and recurring allowances a Solana wallet has granted, by state, plus the rent their accounts hold. Nothing is cancelled.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_token_tax` (~72 tokens)

Check token tax

List the transfer-tax tokens a Solana wallet launched through the platform, with each tax rate — the tokens whose withheld tax that wallet can collect. Nothing is collected.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `check_frozen_tokens` (~75 tokens)

Check frozen tokens

Read the permissioned (Token ACL) tokens a Solana wallet holds, and which of them the holder can unlock itself under the token's published rules. Nothing is unlocked.

Input parameters:

- `address` (string, required): The Solana wallet address to read (base58 public key). Public data only; no connection or signature is involved.

### `audit_token` (~135 tokens)

Audit token

Run the free risk report on a token: who can still mint or freeze, transfer taxes and hooks, permanent delegates, liquidity status, holder concentration, and a verdict with a score. On Solana pass the mint address; on Robinhood Chain pass the token contract address. Use it when a user asks whether a token is safe, a rug, or a honeypot. Reads only.

Input parameters:

- `address` (string, required): The token's mint address (Solana, base58) or contract address (Robinhood Chain, 0x).
- `chain` (string): Which chain the token lives on. Defaults to solana.

### `check_token_unlocks` (~83 tokens)

Check token unlocks

Read a Solana token's on-chain locks: supply vesting and locked liquidity, per locker, with the cliff, start, period and released amounts each lock reports. Use it when a user asks when a token unlocks or whether its liquidity is locked. Reads public lock accounts only.

Input parameters:

- `mint` (string, required): The token's mint address (base58).

### `search_tokens` (~109 tokens)

Search tokens

Find a token on Robinhood Chain by name, symbol or address in the xroot.dev token directory — the trending and newest tokens the platform has indexed — with each token's pool, price and cached audit verdict where one exists. Use it to resolve which of several same-named tokens a user means before auditing it.

Input parameters:

- `chain` (string): The chain whose directory to search. Defaults to robinhood.
- `query` (string): Name, symbol or address fragment. Empty returns the trending list.

### `list_upgrades` (~103 tokens)

List upgrades

List Solana's protocol upgrades (feature gates) with their state on mainnet, testnet and devnet — pending with an activation estimate, active with its activation epoch, or not yet queued — as read from the chain. Use it when a user asks whether a SIMD or feature has activated, or what is coming next. Optionally filter by mainnet state.

Input parameters:

- `state` (string): Keep only gates in this mainnet state. Omit for all.

### `check_approvals` (~87 tokens)

Check approvals

List the standing token approvals on a Robinhood Chain wallet — contracts still allowed to move its tokens — ranked by risk, with unlimited allowances, expired permits and flagged spenders called out. A risk read, not money: revoking returns nothing. Nothing is revoked.

Input parameters:

- `address` (string, required): The wallet address (0x). Public data only; no connection or signature is involved.

### `get_fee_estimate` (~113 tokens)

Get fee estimate

Quote the exact cost of a token operation before anything is built: the platform fee for that service on that chain plus the estimated network fee (rent, base and priority), as decimal strings in the chain's currency. Use it when a user asks what a token deploy, authority revoke, airdrop or metadata update would cost. Reads only; nothing is prepared or sent.

Input parameters:

- `request` (object, required): The operation intent — same shape the browser flow sends (chain, then service, then the service's fields).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/dev-xroot-token-operations/api#diagnostics

## Score history

- 2026-09-20: 72
- 2026-09-19: 72

## Common questions

### What is the dev.xroot/token-operations MCP server?

dev.xroot/token-operations is an MCP server listed in the public MCP registry as dev.xroot/token-operations. Read-only Solana and Robinhood Chain tools: wallet recovery, token safety, unlocks, upgrades, fees. This page covers its hosted endpoint (https://api.xroot.dev/mcp).

### Is the dev.xroot/token-operations MCP server safe to use?

dev.xroot/token-operations scores 72 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the dev.xroot/token-operations MCP server expose?

dev.xroot/token-operations exposes 18 tools: check_wallet, check_reclaimable_rent, check_wrapped_sol, check_token_delegates, check_failed_deploys, and 13 more. Their descriptions and schemas cost roughly 1,719 tokens of context every time the server is loaded.

### Does the dev.xroot/token-operations MCP server require authentication?

No. We connected to dev.xroot/token-operations without credentials and it answered, so anything it exposes is reachable by anyone who knows the address.

### Is the dev.xroot/token-operations MCP server still maintained?

dev.xroot/token-operations is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Remote endpoint: https://api.xroot.dev/mcp
- Website: https://app.xroot.dev/
- Changelog RSS feed: https://verifymcp.io/servers/dev-xroot-token-operations/api.xml
- Changelog JSON feed: https://verifymcp.io/servers/dev-xroot-token-operations/api.json
- HTML version of this page: https://verifymcp.io/servers/dev-xroot-token-operations/api
