ElizaOS plugin for MadeOnSol — Solana KOL trading intelligence and deployer analytics.
Three options (in priority order):
| Method | Setting | Best for |
|---|---|---|
| MadeOnSol API key (recommended) | MADEONSOL_API_KEY |
Developers — get a free key |
| RapidAPI key | RAPIDAPI_KEY |
RapidAPI subscribers |
| x402 micropayments | SVM_PRIVATE_KEY |
AI agents with Solana wallets |
Gives your ElizaOS agent access to MadeOnSol's Solana intelligence API.
| Action | Endpoint |
|---|---|
GET_KOL_FEED |
Real-time KOL trade feed (946 wallets) |
GET_KOL_COORDINATION |
Multi-KOL convergence signals |
GET_KOL_LEADERBOARD |
KOL PnL/win-rate rankings |
GET_DEPLOYER_ALERTS |
Pump.fun elite deployer alerts |
npm install @madeonsol/plugin-madeonsolx402 peer deps (
@x402/fetch @x402/svm @x402/core @solana/kit @scure/base) are only needed when usingSVM_PRIVATE_KEY.
import { madeOnSolPlugin } from "@madeonsol/plugin-madeonsol";
const agent = {
plugins: [madeOnSolPlugin],
settings: {
// Option 1: API key (simplest — get one free at madeonsol.com/developer)
MADEONSOL_API_KEY: "msk_your_api_key_here",
// Option 2: RapidAPI key
// RAPIDAPI_KEY: "your_rapidapi_key",
// Option 3: x402 micropayments (AI agents)
// SVM_PRIVATE_KEY: "your_base58_solana_private_key",
},
};Your agent can then respond to queries like:
- "What are KOLs buying right now?"
- "Show me the KOL leaderboard this week"
- "What tokens are multiple KOLs accumulating?"
- "Any new deployer alerts from Pump.fun?"
GET https://madeonsol.com/api/x402
Returns all available endpoints, prices, and parameter docs. No auth required.
| Platform | Package |
|---|---|
| TypeScript SDK | madeonsol-x402 |
| Python (LangChain, CrewAI) | madeonsol-x402 on PyPI |
| MCP Server (Claude, Cursor) | mcp-server-madeonsol |
| Solana Agent Kit | solana-agent-kit-plugin-madeonsol |
MIT