Solentic
Solentic is an MCP server wrapping Blueprint's Solana staking infrastructure, providing AI agents with 26 tools across the following categories:
Staking Operations (One-shot):
stake,unstake,withdraw– Full lifecycle staking in a single call (server-side in-memory signing)
Unsigned Transaction Builders (local signing):
create_stake_transaction,create_unstake_transaction,withdraw_stake– Build unsigned transactions for client-side signingsubmit_transaction– Submit a pre-signed transaction to Solana
Info & Monitoring:
get_validator_info– Validator profile, commission, active stake, APYget_staking_apy– Live APY breakdown (base + Jito MEV)get_performance_metrics– Vote success rate, uptime, skip rate, epoch creditsget_infrastructure– Server hardware specs (active + standby)generate_wallet– Local wallet generation codecheck_balance– SOL balance for any walletcheck_stake_accounts– List stake accounts delegated to Blueprint for a walletcheck_withdraw_ready– Per-account withdrawal readiness with ETAssimulate_stake– Project compound staking rewardsget_staking_summary– Full portfolio dashboard in one callget_epoch_timing– Current epoch progress, slots remaining, estimated end timecheck_address_type– Detect if an address is a wallet, stake account, or vote account
Verification & Trust:
verify_transaction– Verify a transaction was built through Blueprint (on-chain memo proof)verify_code_integrity– Verify deployed source code integrity via git commit hashget_verification_links– Third-party verification URLs and Solana CLI commands
Webhooks:
register_webhook,list_webhooks,delete_webhook– Push notifications for stake account state changes
Support:
donate– Build an unsigned SOL donation transaction to support Blueprint development
Provides tools for interacting with Solana staking infrastructure, enabling users to monitor validator metrics and APY, check wallet balances, and generate unsigned transactions for staking, unstaking, and withdrawing SOL.
Solentic MCP Server
Standalone 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.
Tools
Agent-first (one-shot — build + sign + submit in one call):
Tool | Description | Type |
| Stake SOL — one call, confirmed signature returned | Write |
| Deactivate stake — one call, confirmed | Write |
| Withdraw SOL — one call, confirmed | Write |
Info & monitoring:
Tool | Description | Type |
| Validator profile, commission, active stake, APY | Read |
| Live APY breakdown (base + Jito MEV) | Read |
| Vote success, uptime, skip rate, epoch credits | Read |
| Server hardware specs (both servers) | Read |
| Local wallet generation code (JS, Python, CLI) | Read |
| SOL balance for any wallet | Read |
| List stake accounts for a wallet | Read |
| Per-account withdrawal readiness with ETA | Read |
| Project staking rewards with compound interest | Read |
| Complete portfolio dashboard (single call) | Read |
| Current Solana epoch progress and timing | Read |
| Detect wallet vs stake account vs vote account | Read |
Verification:
Tool | Description | Type |
| Verify a transaction was built through Blueprint | Read |
| Verify deployed source code integrity | Read |
| Third-party verification URLs | Read |
Advanced (unsigned transaction builders — for local signing):
Tool | Description | Type |
| Build unsigned stake transaction | Write |
| Build unsigned unstake transaction | Write |
| Build unsigned withdraw transaction | Write |
| Submit a pre-signed transaction to Solana | Write |
Webhooks:
Tool | Description | Type |
| Register push notification for state changes | Write |
| List registered webhooks for a wallet | Read |
| Delete a webhook registration | Write |
Support:
Tool | Description | Type |
| Build unsigned donation transaction | Write |
Quick Start
Claude Desktop / Claude Code
Add to your MCP config:
{
"mcpServers": {
"solentic": {
"url": "https://solentic.theblueprint.xyz/mcp"
}
}
}Run Locally (stdio)
npx @mbrassey/solentic-mcpOr clone and run:
npm install && npm run build
node dist/server.jsArchitecture
Lightweight MCP proxy (stdio transport) that wraps the Blueprint REST API.
One-shot tools (
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.Advanced tools (
create_stake_transaction, etc.): return unsigned transactions. No secret key required — agents sign locally.Read tools: no keys involved, purely informational.
AI Agent → MCP Server (stdio) → Blueprint REST API (HTTPS) → SolanaLinks
Live MCP endpoint: https://solentic.theblueprint.xyz/mcp
API docs: https://solentic.theblueprint.xyz/docs
API explorer: https://solentic.theblueprint.xyz/api-docs
OpenAPI spec: https://solentic.theblueprint.xyz/openapi.json
License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/blueprint-infrastructure/solentic'
If you have feedback or need assistance with the MCP directory API, please join our Discord server