Somnia
Search official Somnia documentation and query on-chain data for accounts, transactions, and blocks. Manage a wallet to view balances, transfer native or token assets, and control allowances. Sign messages, typed data, and transactions with fee guidance for reliable execution.
Ask AI about Somnia
Powered by Claude Β· Grounded in docs
I know everything about Somnia. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Somnia MCP Server
Model Context Protocol (MCP) server that enables AI agents like Claude to interact with the Somnia blockchain network.
Built with Amazon Q Developer's Kiro - This project was architected, designed, and documented using Kiro's AI-powered spec-driven development workflow, agent hooks, and intelligent code analysis. See KIRO_DEVELOPMENT_PROCESS.md for details.
Features
- Official Somnia documentation search
- Blockchain queries (accounts, transactions, blocks)
- Wallet management and creation
- Cryptographic signing operations
- On-chain tools via GOAT SDK
Quick Start
Prerequisites
- Node.js 18+
- pnpm 10.14.0+
Installation
# Install dependencies
pnpm install
# Build the project
pnpm build
Usage
Development Mode
# Run in development mode
pnpm dev
Production Mode
# Build the project
pnpm build
# Start the server
pnpm start
Testing
pnpm test
Clean Build
# Remove build artifacts
pnpm clean
Configuration
Environment Variables
Create a .env file in the root directory:
# Network Configuration
ENVIRONMENT=TESTNET # or MAINNET
# Wallet Configuration (required for signing)
AGENT_SECRET_KEY=0x... # Your private key
# Server Configuration
USE_STREAMABLE_HTTP=false # true for HTTP mode
PORT=3000 # HTTP server port
HOST=127.0.0.1 # HTTP server host
See .env.example for a template.
Network Information
Mainnet
- Chain ID: 5031
- RPC URL: https://api.infra.mainnet.somnia.network/
- Explorer: https://somniascan.io
- Native Token: STT
Testnet
- Chain ID: 50312
- RPC URL: https://dream-rpc.somnia.network/
- Explorer: https://testnet.somniascan.io
- Native Token: STT (Testnet)
Project Structure
somnia/
βββ src/ # Server source code
βββ dist/ # Built output
βββ .env # Environment variables (gitignored)
βββ .env.example # Environment template
βββ package.json # Dependencies and scripts
βββ tsconfig.json # TypeScript configuration
βββ Dockerfile # Docker configuration
βββ .dockerignore # Docker ignore patterns
βββ smithery.yaml # Smithery configuration
βββ somnia-mcp-stdio.example.json # STDIO mode config
βββ somnia-mcp-streamable-http.json # HTTP mode config
βββ README.md # This file
Docker Support
Build and run with Docker:
# Build Docker image
docker build -t somnia-mcp-server .
# Run container
docker run -p 3000:3000 --env-file .env somnia-mcp-server
Deployment
MCP Server
For deployment instructions to Smithery or other platforms, see DEPLOYMENT.md.
Important: Ensure AGENT_SECRET_KEY is set as an environment variable in your deployment platform, not hardcoded in the Dockerfile.
Documentation Site
The docs/ folder contains a static HTML documentation site. For hosting instructions, see docs/HOSTING.md.
Quick Deploy:
- GitHub Pages (recommended)
- Vercel:
vercel --prod - Netlify: Drag & drop at https://app.netlify.com/drop
- Surge:
cd docs && surge
Resources
- Somnia Documentation
- Somnia Explorer
- Somnia Discord
- Somnia Twitter
- Model Context Protocol
- Amazon Q Developer - AI-powered development tool used to build this project
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
MIT License
Security Considerations
Important Security Notes:
- Private Keys: Never commit your
AGENT_SECRET_KEYto version control - Environment Variables: Use secure secret management for production
- API Access: Limit MCP server access to trusted AI agents
- Testnet First: Always test on Somnia Testnet before mainnet operations
Troubleshooting
Build Errors
# Clear all dependencies and rebuild
pnpm clean
rm -rf node_modules pnpm-lock.yaml
pnpm install
pnpm build
Connection Issues
- Verify RPC URLs are accessible
- Check network environment (MAINNET vs TESTNET)
- Ensure correct chain ID configuration
Signing Failures
- Verify
AGENT_SECRET_KEYis correctly formatted (0x prefix) - Check private key has required permissions
- Ensure sufficient balance for gas fees
Made with β€οΈ for the Somnia ecosystem
Built with π€ Amazon Q Developer | Kiro
