Quick Start
Welcome to AutoMCP! This guide will help you create your first automated MCP server in under 10 minutes.
Prerequisites
Before you begin, ensure you have:
A Solana wallet (Phantom, Solflare, or hardware wallet)
Basic understanding of DeFi concepts
SOL tokens for transaction fees (minimum 0.1 SOL recommended)
Step 1: Account Setup
Connect Your Authentication Wallet
Visit the AutoMCP dashboard
Click "Connect Wallet" in the top right corner
Select your preferred wallet provider
Approve the connection request
Configure Operation Wallet
Navigate to "Wallet Settings"
Click "Add Operation Wallet"
Choose your import method:
Mnemonic Phrase: Import existing wallet
Private Key: Direct key import
Hardware Wallet: Connect Ledger/Trezor
Generate New: Create fresh wallet
{
"walletType": "operation",
"encryptionLevel": "AES-256",
"storageLocation": "local",
"backupEnabled": true
}Step 2: Create Your First MCP Server
Using Natural Language
Simply describe what you want your automation to do:
Example Input:
"I want to automatically swap USDC to SOL when SOL price drops below $180,
using Jupiter for best prices, with maximum 2% slippage, and notify me via webhook."AI Processing
Our AI engine will:
Parse your requirements
Identify optimal protocols (Jupiter aggregator)
Set safety parameters (2% slippage protection)
Generate the MCP server code
Create deployment configuration
Review Generated Configuration
server_config:
name: "USDC-SOL-DCA-Bot"
triggers:
- price_below: 180
token_pair: "SOL/USDC"
actions:
- swap:
from: "USDC"
to: "SOL"
protocol: "Jupiter"
slippage: 0.02
notifications:
- webhook: "https://your-webhook.com/notify"Step 3: Deploy and Test
Sandbox Testing
Click "Test in Sandbox"
Review simulated transactions
Verify all parameters are correct
Check security warnings
Live Deployment
Click "Deploy Server"
Choose deployment option:
Local: Run on your machine
Cloud: Hosted solution
Complete final verification
Activate your MCP server
Next Steps
Now that you have your first MCP server running:
Explore Templates: Browse our template library for more complex strategies
Advanced Features: Learn about cross-protocol operations and MEV protection
Scale Up: Create multiple servers for different strategies
Need Help?
📖 Read our detailed documentation
🐛 Report issues: GitHub Issues
Ready to dive deeper? Continue with our Installation Guide for advanced setup options.
Last updated