Solentic MCP Server

MCP server for Blueprint Agentic Staking — native Solana staking infrastructure for AI agents

Local serverstdioPython

What is the Solentic MCP MCP server?

MCP server for Blueprint Agentic Staking — native Solana staking infrastructure for AI agents. The solentic mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

26 MCP tools wrapping the Blueprint REST API. One-shot tools (stake, unstake, withdraw) handle the full lifecycle in a single call — the secret key is sent to the Blueprint server over HTTPS for in-memory signing and is never stored or logged. Verify via verify_code_integrity. Advanced tools (create_stake_transaction, etc.) return unsigned transactions for agents that prefer local signing.

Its toolset

Everything the assistant can do here goes through one of these:

  • stake — Stake SOL — one call, confirmed signature returned
  • unstake — Deactivate stake — one call, confirmed
  • withdraw — Withdraw SOL — one call, confirmed
  • get_validator_info — Validator profile, commission, active stake, APY
  • get_staking_apy — Live APY breakdown (base + Jito MEV)
  • get_performance_metrics — Vote success, uptime, skip rate, epoch credits
  • get_infrastructure — Server hardware specs (both servers)
  • generate_wallet — Local wallet generation code (JS, Python, CLI)
  • check_balance — SOL balance for any wallet
  • check_stake_accounts — List stake accounts for a wallet
  • check_withdraw_ready — Per-account withdrawal readiness with ETA
  • simulate_stake — Project staking rewards with compound interest

Adding it to your client

@mbrassey/solentic-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

When to reach for it

This sits in the cloud and infrastructure group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Solentic MCP's toolset — stake, unstake, withdraw and 11 more — is a fair guide to whether it matches your workflow. It is maintained by blueprint-infrastructure; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • 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.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Solentic MCP.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the solentic mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
stakeStake SOL — one call, confirmed signature returned
unstakeDeactivate stake — one call, confirmed
withdrawWithdraw SOL — one call, confirmed
get_validator_infoValidator profile, commission, active stake, APY
get_staking_apyLive APY breakdown (base + Jito MEV)
get_performance_metricsVote success, uptime, skip rate, epoch credits
get_infrastructureServer hardware specs (both servers)
generate_walletLocal wallet generation code (JS, Python, CLI)
check_balanceSOL balance for any wallet
check_stake_accountsList stake accounts for a wallet
check_withdraw_readyPer-account withdrawal readiness with ETA
simulate_stakeProject staking rewards with compound interest
get_staking_summaryComplete portfolio dashboard (single call)
get_epoch_timingCurrent Solana epoch progress and timing

How to install the Solentic MCP MCP server

{
  "mcpServers": {
    "solentic": {
      "url": "https://solentic.theblueprint.xyz/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Solentic MCP to stake.
  • Use Solentic MCP to unstake.
  • Use Solentic MCP to withdraw.

Frequently asked questions

It connects Solentic MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (stake, unstake, withdraw, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Solentic MCP directly.