SOL Forge
Provides tools for interacting with the Solana blockchain, including wallet management, SPL token operations, blockchain exploration, and DeFi swaps via Jupiter.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SOL Forgecheck my SOL balance"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SOL Forge
MCP Server for Solana Blockchain — Built Autonomously by an AI Agent
SOL Forge is a Model Context Protocol (MCP) server that enables any AI agent to interact with the Solana blockchain. It provides 20 tools covering wallet management, SPL token operations, blockchain exploration, DeFi integration via Jupiter, and built-in safety guards.
This project was conceived, designed, built, and iterated on entirely autonomously by an AI agent (Hermes Agent, running on Nous Research infrastructure) as a submission to the Superteam Earn Open Innovation Track.
Why SOL Forge?
The Solana ecosystem has powerful tools — @solana/web3.js, SPL Token library, Jupiter aggregator — but they require developers to write custom integration code. SOL Forge wraps these into a standardized MCP interface, meaning any AI agent can interact with Solana with zero custom code.
Novel and Interesting Aspects
Agent-Built-for-Agents: This is a meta-project — an AI agent autonomously building tools for other AI agents to use Solana. The entire design, code, tests, and documentation were produced by the agent without human intervention.
First Comprehensive Solana MCP Server: While individual Solana SDKs exist, SOL Forge is the first to expose the full Solana interaction surface (wallets, tokens, explorer, DeFi) through MCP, the emerging standard for AI-tool interop.
Safety-First Design: Every destructive operation supports
simulateOnlymode. Transaction simulation and fee estimation happen before execution. This is critical for autonomous agents that must not lose funds.Zero API Keys Required for Queries: Price data via Jupiter is free (no key). Explorer queries use public Solana RPC. Only on-chain transactions require a funded wallet.
Related MCP server: solana-mcp-server
How Solana Is Used
SOL Forge uses Solana meaningfully across multiple layers:
Layer | How |
RPC | Full connection management to any Solana cluster (mainnet, devnet, testnet) via |
On-chain Programs | Interacts with System Program (SOL transfers) and SPL Token Program (token creation, minting, transfers, burns) |
Transactions | Constructs, simulates, signs, and confirms real on-chain transactions |
Indexing | Reads parsed transactions, token accounts, block data, and account info from Solana's indexer |
DeFi | Integrates with Jupiter V6 aggregator for real-time pricing and swap quotes across all Solana DEXs |
Tools (20 Total)
Wallet Operations (6 tools)
Tool | Description |
| Generate new Solana keypair, stored locally |
| List all locally stored wallets |
| Get SOL balance for any address |
| Full wallet info: SOL, tokens, executable status |
| Send SOL with simulation-first safety |
| Devnet SOL airdrop (max 2 SOL) |
SPL Token Operations (6 tools)
Tool | Description |
| Create new SPL token with configurable decimals |
| Mint tokens to any wallet |
| Transfer SPL tokens between wallets |
| Token mint info: supply, decimals, authorities |
| List all token accounts for a wallet |
| Burn tokens permanently |
Blockchain Explorer (5 tools)
Tool | Description |
| Detailed parsed transaction info |
| Account data: owner, balance, data size |
| Recent block information |
| Current slot, block height, epoch info |
| Recent tx signatures for any address |
DeFi & Prices (4 tools)
Tool | Description |
| Real-time price via Jupiter (no API key) |
| Batch price queries for multiple tokens |
| Swap quote between any two Solana tokens |
| Built-in token registry (SOL, USDC, BONK, JUP, etc.) |
Safety (built into transfer tools)
simulateOnlyflag on all destructive operationsAutomatic fee estimation before execution
LAMPORTS_PER_SOL precision handling
How the AI Agent Operated Autonomously
This project demonstrates full agent autonomy across every phase:
1. Ideation
The agent identified the Superteam Earn bounty, analyzed the requirements (open innovation, Solana usage, agent autonomy), and conceived the MCP server concept — recognizing that agent-to-agent tooling was both novel and practically valuable.
2. Architecture
The agent designed the project structure, selected the tech stack (TypeScript, MCP SDK, Solana web3.js, Jupiter API), and planned the tool surface area across 4 categories.
3. Implementation
All source code was written by the agent:
src/server.ts— MCP server creation and tool registrationsrc/tools/wallet.ts— 6 wallet tools with key managementsrc/tools/token.ts— 6 SPL token tools with mint/transfer/burnsrc/tools/explorer.ts— 5 blockchain explorer toolssrc/tools/defi.ts— 4 DeFi tools via Jupitersrc/utils/— Connection management, keypair storage, safety simulation
4. Iteration
The agent iteratively fixed TypeScript compilation errors (MCP SDK API changes, Solana web3.js type updates), resolved CJS/ESM interop issues, and refined the tool schemas until the project compiled cleanly.
5. Documentation
This README, the LICENSE (MIT), and all code comments were written by the agent.
Quick Start
Install
git clone https://github.com/Fahrur-Rozi-dev/sol-forge.git
cd sol-forge
npm install
npm run buildUse with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"sol-forge": {
"command": "node",
"args": ["/path/to/sol-forge/dist/index.js"],
"env": {
"SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com"
}
}
}
}Use with Any MCP Client
# Start the MCP server (stdio transport)
node dist/index.js
# Or set custom RPC
SOLANA_RPC_URL="https://api.devnet.solana.com" node dist/index.jsUse Programmatically
import { createSolForgeServer } from './src/server.js';
const server = createSolForgeServer({
rpcUrl: 'https://api.devnet.solana.com',
commitment: 'confirmed',
});
// Server is now ready with all 20 tools registeredEnvironment Variables
Variable | Default | Description |
|
| Solana RPC endpoint |
|
| Transaction commitment level |
Architecture
sol-forge/
├── src/
│ ├── index.ts # Entry point — stdio MCP transport
│ ├── server.ts # MCP server factory with tool registration
│ ├── types.ts # TypeScript interfaces
│ ├── tools/
│ │ ├── index.ts # Re-exports all tool categories
│ │ ├── wallet.ts # Wallet CRUD + transfer + airdrop
│ │ ├── token.ts # SPL token lifecycle (create/mint/transfer/burn)
│ │ ├── explorer.ts # Blockchain data queries
│ │ └── defi.ts # Jupiter price + swap quotes
│ └── utils/
│ ├── connection.ts # Solana RPC connection singleton
│ ├── keypair.ts # Wallet file storage (~/.sol-forge-wallets/)
│ └── safety.ts # Transaction simulation + fee estimation
├── tests/
│ └── core.test.ts # Unit tests
├── package.json
├── tsconfig.json
├── jest.config.js
├── LICENSE # MIT
└── README.mdDevelopment
# Build
npm run build
# Test
npm test
# Dev mode (auto-recompile)
npm run devLicense
MIT — use it for anything. Attribution appreciated but not required.
Agent Attribution
This project was built by Hermes Agent (by Nous Research), running as an autonomous agent on the Superteam Earn platform. The agent operates with persistent memory, tool access, and the ability to plan, build, and iterate on complex software projects without human intervention.
Agent: Hermes Agent
Platform: Nous Research
Submission: Superteam Earn — Open Innovation Track (AGENT_ONLY)
Repository: sol-forge
Maintenance
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
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Fahrur-Rozi-dev/sol-forge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server