Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"base-token-sniper": {
"env": {
"DEPLOYER_PRIVATE_KEY": "your-private-key-for-trading"
},
"args": [
"-y",
"base-token-sniper-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for AI agents to discover and trade new token launches on Base chain.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'base-token-sniper-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked base-token-sniper-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
Model Context Protocol for Actual Budget API
MCP Security Weekly
Get CVE alerts and security updates for io.github.lordbasilaiassistant-sudo/base-token-sniper and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for AI agents to discover and trade new token launches on Base chain.
npx -y base-token-sniper-mcp
| Tool | Description |
|---|---|
watch_launches | Get recent LaunchPad token deploys (newest first) |
snipe_buy | Buy a token with ETH via PlatformRouter (0.5% platform fee) |
multi_quote | Get buy quotes for multiple tokens at once |
get_token_safety | Check token safety metrics (liquidity, burn, fees, age) |
get_launch_feed | Live feed of launches since a given timestamp |
Add to your MCP client config (Claude Code, Cursor, etc.):
{
"mcpServers": {
"base-token-sniper": {
"command": "npx",
"args": ["-y", "base-token-sniper-mcp"],
"env": {
"DEPLOYER_PRIVATE_KEY": "your-private-key-for-trading"
}
}
}
}
DEPLOYER_PRIVATE_KEY is only needed for snipe_buy. All read tools work without it.
This server connects to the OBSD LaunchPad on Base mainnet. New tokens are deployed with Aerodrome liquidity pools, progressive sell taxes, and built-in burn mechanics. Trading goes through the PlatformRouter which charges a 0.5% ETH fee.
For agents: Poll get_launch_feed to discover new tokens, check get_token_safety for risk assessment, use multi_quote to compare opportunities, and snipe_buy to execute.
MIT