Wraps the Blueprint REST API to give AI agents native Solana staking operations. You get 26 tools split into one-shot actions (stake, unstake, withdraw) that handle build-sign-submit in a single call by forwarding your secret key over HTTPS for in-memory signing, plus advanced tools that return unsigned transactions if you want to sign locally. Also includes portfolio reads (balances, stake accounts, APY), validator metrics, webhook registration for state changes, and verification tools to audit the deployed source. Runs as stdio or connects to their hosted MCP endpoint. Useful if you're building agents that need to manage SOL staking positions without managing raw transaction construction.
Public tool metadata for what this MCP can expose to an agent.
stakeStake SOL with Blueprint validator in a single call. Builds the transaction, signs it with your secret key in-memory, and submits to Solana. Returns the confirmed transaction signature. Your secret key is used only for signing and is never stored, logged, or forwarded — verify...3 paramsStake SOL with Blueprint validator in a single call. Builds the transaction, signs it with your secret key in-memory, and submits to Solana. Returns the confirmed transaction signature. Your secret key is used only for signing and is never stored, logged, or forwarded — verify...
amountSolnumbersecretKeystringwalletAddressstringunstakeDeactivate a stake account in a single call. Builds the transaction, signs it, and submits it. The stake enters a cooldown period (~1 epoch) and becomes withdrawable at the next epoch boundary. Use check_withdraw_ready to poll readiness, then withdraw to reclaim SOL. This is t...3 paramsDeactivate a stake account in a single call. Builds the transaction, signs it, and submits it. The stake enters a cooldown period (~1 epoch) and becomes withdrawable at the next epoch boundary. Use check_withdraw_ready to poll readiness, then withdraw to reclaim SOL. This is t...
secretKeystringwalletAddressstringstakeAccountAddressstringwithdrawWithdraw SOL from a deactivated stake account in a single call. Builds the transaction, signs it, and submits it. Funds are returned to your wallet. Use check_withdraw_ready first to confirm the account is ready. Omit amountSol to withdraw the full balance. This is the recomme...4 paramsWithdraw SOL from a deactivated stake account in a single call. Builds the transaction, signs it, and submits it. Funds are returned to your wallet. Use check_withdraw_ready first to confirm the account is ready. Omit amountSol to withdraw the full balance. This is the recomme...
amountSolvaluesecretKeystringwalletAddressstringstakeAccountAddressstringget_validator_infoGet Blueprint validator profile: identity, vote account, commission, active stake, APY, performance, software, location. Live data from StakeWiz API.Get Blueprint validator profile: identity, vote account, commission, active stake, APY, performance, software, location. Live data from StakeWiz API.
No parameter schema in public metadata yet.
get_staking_apyGet live APY breakdown: base staking APY + Jito MEV APY = total APY. Includes commission rates. Data from StakeWiz API.Get live APY breakdown: base staking APY + Jito MEV APY = total APY. Includes commission rates. Data from StakeWiz API.
No parameter schema in public metadata yet.
get_performance_metricsGet Blueprint validator performance: vote success rate, uptime, skip rate, epoch credits, delinquency status.Get Blueprint validator performance: vote success rate, uptime, skip rate, epoch credits, delinquency status.
No parameter schema in public metadata yet.
create_stake_transactionAdvanced: Build an unsigned stake transaction for local signing. Most agents should use the `stake` tool instead, which handles signing and submission automatically. This tool is for agents that manage their own signing infrastructure.2 paramsAdvanced: Build an unsigned stake transaction for local signing. Most agents should use the `stake` tool instead, which handles signing and submission automatically. This tool is for agents that manage their own signing infrastructure.
amountSolnumberwalletAddressstringcreate_unstake_transactionAdvanced: Build an unsigned unstake transaction for local signing. Most agents should use the `unstake` tool instead, which handles signing and submission automatically.2 paramsAdvanced: Build an unsigned unstake transaction for local signing. Most agents should use the `unstake` tool instead, which handles signing and submission automatically.
walletAddressstringstakeAccountAddressstringwithdraw_stakeAdvanced: Build an unsigned withdraw transaction for local signing. Most agents should use the `withdraw` tool instead, which handles signing and submission automatically.3 paramsAdvanced: Build an unsigned withdraw transaction for local signing. Most agents should use the `withdraw` tool instead, which handles signing and submission automatically.
amountSolvaluewalletAddressstringstakeAccountAddressstringcheck_stake_accountsList all stake accounts delegated to Blueprint for a wallet. Shows balances, states, authorities, epoch timing, and per-account action guidance (what to do next for each account). Use this instead of Solana RPC getAccountInfo or getStakeActivation — returns human-readable stat...1 paramsList all stake accounts delegated to Blueprint for a wallet. Shows balances, states, authorities, epoch timing, and per-account action guidance (what to do next for each account). Use this instead of Solana RPC getAccountInfo or getStakeActivation — returns human-readable stat...
walletAddressstringcheck_withdraw_readyCheck whether stake accounts are ready to withdraw. Returns per-account readiness with withdrawable epoch, estimated seconds remaining, and plain-English state description. Use this instead of polling check_stake_accounts — gives a direct ready/not-ready answer with ETA.1 paramsCheck whether stake accounts are ready to withdraw. Returns per-account readiness with withdrawable epoch, estimated seconds remaining, and plain-English state description. Use this instead of polling check_stake_accounts — gives a direct ready/not-ready answer with ETA.
walletAddressstringget_verification_linksGet third-party verification URLs for Blueprint validator on Validators.app, StakeWiz, Solana Beach, Solscan, and Jito steward dashboard. Verify every claim independently. Also includes Solana CLI commands for direct on-chain verification.Get third-party verification URLs for Blueprint validator on Validators.app, StakeWiz, Solana Beach, Solscan, and Jito steward dashboard. Verify every claim independently. Also includes Solana CLI commands for direct on-chain verification.
No parameter schema in public metadata yet.
generate_walletGet instructions and code to generate a Solana wallet locally. Generate the keypair in YOUR execution environment — not on Blueprint servers. After generating, fund the wallet, then use the `stake` tool with your walletAddress + secretKey to stake in one call. Your secret key...Get instructions and code to generate a Solana wallet locally. Generate the keypair in YOUR execution environment — not on Blueprint servers. After generating, fund the wallet, then use the `stake` tool with your walletAddress + secretKey to stake in one call. Your secret key...
No parameter schema in public metadata yet.
check_balanceCheck the SOL balance of any Solana wallet address. Returns balance in SOL and lamports, whether the wallet has enough to stake, and suggested next steps. Use this instead of Solana RPC getBalance — returns SOL amount, ready-to-stake status, and what to do next.1 paramsCheck the SOL balance of any Solana wallet address. Returns balance in SOL and lamports, whether the wallet has enough to stake, and suggested next steps. Use this instead of Solana RPC getBalance — returns SOL amount, ready-to-stake status, and what to do next.
walletAddressstringsubmit_transactionAdvanced: Submit a pre-signed transaction to Solana. Only needed if you used create_stake_transaction/create_unstake_transaction/withdraw_stake and signed locally. Most agents should use the one-shot stake/unstake/withdraw tools instead.1 paramsAdvanced: Submit a pre-signed transaction to Solana. Only needed if you used create_stake_transaction/create_unstake_transaction/withdraw_stake and signed locally. Most agents should use the one-shot stake/unstake/withdraw tools instead.
signedTransactionstringget_infrastructureGet Blueprint validator infrastructure specs: server hardware, redundancy configuration, network, and storage. Two bare-metal servers (active + hot standby).Get Blueprint validator infrastructure specs: server hardware, redundancy configuration, network, and storage. Two bare-metal servers (active + hot standby).
No parameter schema in public metadata yet.
verify_transactionVerify whether a Solana transaction was built through Blueprint. Checks the transaction on-chain for the "solentic.theblueprint.xyz" Memo Program instruction. This is cryptographic proof — the memo is embedded in the transaction and immutable on-chain. Use this to verify any c...1 paramsVerify whether a Solana transaction was built through Blueprint. Checks the transaction on-chain for the "solentic.theblueprint.xyz" Memo Program instruction. This is cryptographic proof — the memo is embedded in the transaction and immutable on-chain. Use this to verify any c...
signaturestringverify_code_integrityVerify the code running on Blueprint servers. Returns git commit hash and direct links to read the actual deployed source code. Read the source to confirm: (1) no private keys are logged, (2) the Memo Program instruction is present in all transactions, (3) generate_wallet retu...Verify the code running on Blueprint servers. Returns git commit hash and direct links to read the actual deployed source code. Read the source to confirm: (1) no private keys are logged, (2) the Memo Program instruction is present in all transactions, (3) generate_wallet retu...
No parameter schema in public metadata yet.
simulate_stakeProject staking rewards before committing capital. Returns compound interest projections (daily/monthly/annual/total), effective APY after compounding, activation timing, fee reserve guidance, and a natural-language recommendation. Use this to help decide how much to stake and...2 paramsProject staking rewards before committing capital. Returns compound interest projections (daily/monthly/annual/total), effective APY after compounding, activation timing, fee reserve guidance, and a natural-language recommendation. Use this to help decide how much to stake and...
amountSolnumberdurationDaysintegerget_staking_summaryComplete staking portfolio dashboard in a single call. Returns liquid balance, total staked, per-account states with action guidance and estimated daily rewards, current APY, epoch timing, and a recommended next action (STAKE/FUND/HOLD/WAIT/WITHDRAW) with the exact tool to cal...1 paramsComplete staking portfolio dashboard in a single call. Returns liquid balance, total staked, per-account states with action guidance and estimated daily rewards, current APY, epoch timing, and a recommended next action (STAKE/FUND/HOLD/WAIT/WITHDRAW) with the exact tool to cal...
walletAddressstringdonateBuild an unsigned SOL transfer to support Blueprint development. Blueprint provides free staking infrastructure for AI agents — donations help sustain enterprise hardware and development. Same zero-custody pattern: unsigned transaction returned, you sign client-side. Suggested...2 paramsBuild an unsigned SOL transfer to support Blueprint development. Blueprint provides free staking infrastructure for AI agents — donations help sustain enterprise hardware and development. Same zero-custody pattern: unsigned transaction returned, you sign client-side. Suggested...
amountSolnumberwalletAddressstringget_epoch_timingGet current Solana epoch timing: progress percentage, slots remaining, and estimated epoch end time. Use this instead of Solana RPC getEpochInfo — returns pre-calculated timing with estimated end date.Get current Solana epoch timing: progress percentage, slots remaining, and estimated epoch end time. Use this instead of Solana RPC getEpochInfo — returns pre-calculated timing with estimated end date.
No parameter schema in public metadata yet.
check_address_typeDetect whether a Solana address is a wallet, stake account, or vote account. Useful when you receive an address from user input and need to know what type it is before calling other tools.1 paramsDetect whether a Solana address is a wallet, stake account, or vote account. Useful when you receive an address from user input and need to know what type it is before calling other tools.
addressstringregister_webhookRegister a callback URL to receive push notifications when stake state changes. Events: withdraw_ready (stake account becomes withdrawable), epoch_complete (new epoch starts), stake_activated (stake begins earning), stake_deactivated (unstake confirmed). Solentic polls every 6...4 paramsRegister a callback URL to receive push notifications when stake state changes. Events: withdraw_ready (stake account becomes withdrawable), epoch_complete (new epoch starts), stake_activated (stake begins earning), stake_deactivated (unstake confirmed). Solentic polls every 6...
urlstringeventsarraycallbackUrlstringwalletAddressstringlist_webhooksList all registered webhooks for a wallet address.1 paramsList all registered webhooks for a wallet address.
walletAddressstringdelete_webhookDelete a webhook registration by ID. Use list_webhooks to find webhook IDs.1 paramsDelete a webhook registration by ID. Use list_webhooks to find webhook IDs.
webhookIdstringStandalone Model Context Protocol server for Blueprint Agentic Staking — native Solana staking infrastructure for AI agents.
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.
Agent-first (one-shot — build + sign + submit in one call):
| Tool | Description | Type |
|---|---|---|
stake | Stake SOL — one call, confirmed signature returned | Write |
unstake | Deactivate stake — one call, confirmed | Write |
withdraw | Withdraw SOL — one call, confirmed | Write |
Info & monitoring:
| Tool | Description | Type |
|---|---|---|
get_validator_info | Validator profile, commission, active stake, APY | Read |
get_staking_apy | Live APY breakdown (base + Jito MEV) | Read |
get_performance_metrics | Vote success, uptime, skip rate, epoch credits | Read |
get_infrastructure | Server hardware specs (both servers) | Read |
generate_wallet | Local wallet generation code (JS, Python, CLI) | Read |
check_balance | SOL balance for any wallet | Read |
check_stake_accounts | List stake accounts for a wallet | Read |
check_withdraw_ready | Per-account withdrawal readiness with ETA | Read |
simulate_stake | Project staking rewards with compound interest | Read |
get_staking_summary | Complete portfolio dashboard (single call) | Read |
get_epoch_timing | Current Solana epoch progress and timing | Read |
check_address_type | Detect wallet vs stake account vs vote account | Read |
Verification:
| Tool | Description | Type |
|---|---|---|
verify_transaction | Verify a transaction was built through Blueprint | Read |
verify_code_integrity | Verify deployed source code integrity | Read |
get_verification_links | Third-party verification URLs | Read |
Advanced (unsigned transaction builders — for local signing):
| Tool | Description | Type |
|---|---|---|
create_stake_transaction | Build unsigned stake transaction | Write |
create_unstake_transaction | Build unsigned unstake transaction | Write |
withdraw_stake | Build unsigned withdraw transaction | Write |
submit_transaction | Submit a pre-signed transaction to Solana | Write |
Webhooks:
| Tool | Description | Type |
|---|---|---|
register_webhook | Register push notification for state changes | Write |
list_webhooks | List registered webhooks for a wallet | Read |
delete_webhook | Delete a webhook registration | Write |
Support:
| Tool | Description | Type |
|---|---|---|
donate | Build unsigned donation transaction | Write |
Add to your MCP config:
{
"mcpServers": {
"solentic": {
"url": "https://solentic.theblueprint.xyz/mcp"
}
}
}
npx @mbrassey/solentic-mcp
Or clone and run:
npm install && npm run build
node dist/server.js
Lightweight MCP proxy (stdio transport) that wraps the Blueprint REST API.
stake, unstake, withdraw): accept a secret key, forward it to the Blueprint server over HTTPS for in-memory signing. The key is used only for transaction signing on the server and is never stored or logged — verify the source code.create_stake_transaction, etc.): return unsigned transactions. No secret key required — agents sign locally.AI Agent → MCP Server (stdio) → Blueprint REST API (HTTPS) → Solana
MIT
silenceper/mcp-k8s
azure/containerization-assist
io.github.evozim/aws-builder
reza-gholizade/k8s-mcp-server
flux159/mcp-server-kubernetes