base-token-sniper-mcp
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., "@base-token-sniper-mcpShow me recent token launches"
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.
base-token-sniper-mcp
An MCP server for AI agents to discover and trade new token launches on Base chain.
Install
npx -y base-token-sniper-mcpRelated MCP server: raydium-launchlab-mcp
Tools
Tool | Description |
| Get recent LaunchPad token deploys (newest first) |
| Buy a token with ETH via PlatformRouter (0.5% platform fee) |
| Get buy quotes for multiple tokens at once |
| Check token safety metrics (liquidity, burn, fees, age) |
| Live feed of launches since a given timestamp |
Setup
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.
How It Works
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.
Chain
Network: Base mainnet (chainId 8453)
Contracts: LaunchPad, PlatformRouter, OBSD token — all verified on Basescan
License
MIT
Available Tools
5 toolsget_launch_feedA
Get a feed of token launches since a given timestamp. Useful for polling new launches periodically. Returns only launches newer than the specified time.
| Name | Required | Description | Default |
|---|---|---|---|
| since_minutes_ago | No | Get launches from the last N minutes (default 60) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing behavior. It adds a key behavioral constraint: 'Returns only launches newer than the specified time.' However, it does not mention whether the operation is read-only, possible limits, pagination, response format, or error behavior, leaving some ambiguity for a 'get' tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three concise, front-loaded sentences. Each sentence adds value: purpose, use case, and behavior. There is no fluff or repetition, making it appropriately sized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple polling tool with one well-documented parameter and no output schema, the description covers the core aspects: what it does, why it's useful, and the time-filter behavior. It lacks details about the response structure or limits, which could be important, but the simplicity of the tool and the clarity of the parameter make it mostly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the parameter fully (since_minutes_ago with default 60 and a clear description). The tool description adds no additional meaning beyond the schema, aside from referring to 'a given timestamp' which is slightly inconsistent with the actual minutes-based parameter, but the schema resolves this. Thus, the description does not enhance parameter understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a feed of token launches since a given timestamp, with a scope defined by time. It distinguishes itself implicitly from siblings like 'watch_launches' via the word 'polling' and 'feed', but it does not explicitly differentiate from similar tools such as watch_launches.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states the primary use case: 'Useful for polling new launches periodically.' This provides clear context for when to use the tool, but it does not mention alternatives or when not to use it, so it lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_token_safetyA
Check safety metrics for a LaunchPad token. Returns liquidity depth, burn stats, fee rates, age, and a simple safety score. Use before trading to assess risk.
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Token contract address to check |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the read-only nature ('Check', 'Returns') and enumerates the returned fields (liquidity depth, burn stats, fee rates, age, safety score). This is transparent for a simple read operation, though it doesn't detail the score's interpretation or edge cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences pack a clear purpose, a list of return values, and a usage recommendation. Every word earns its place, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter, no output schema), the description is complete enough. It lists the key output fields and the use case, making it fully usable without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already has 100% coverage for the single 'token' parameter, with description 'Token contract address to check.' The description adds no further parameter meaning, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Check') and resource ('safety metrics for a LaunchPad token'), clearly distinguishing it from sibling tools like snipe_buy or get_launch_feed. It directly states what the tool does and what it returns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance is given: 'Use before trading to assess risk.' This provides a clear when-to-use context, though it does not name alternative tools or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
multi_quoteA
Get buy quotes for multiple tokens at once. Shows how many tokens you'd receive for a given ETH amount across multiple LaunchPad tokens. Useful for comparing opportunities.
| Name | Required | Description | Default |
|---|---|---|---|
| tokens | Yes | Array of token contract addresses to quote | |
| eth_amount | No | ETH amount to quote for each token (default 0.001) | 0.001 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of disclosing behavior. It explains that the tool 'Shows how many tokens you'd receive for a given ETH amount,' indicating a read-only quote operation, but it does not mention any limitations, data freshness, or whether quotes are binding. Core behavior is clear, but additional context would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action and result. It is concise, avoids unnecessary details, and every sentence contributes meaningful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (two parameters, no output schema), the description adequately explains both what the tool does and what it returns. It does not detail the exact return structure, but the phrase 'Shows how many tokens you'd receive' across multiple tokens gives sufficient context for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage for both parameters, so the description adds minimal extra meaning. It does clarify that tokens are 'LaunchPad tokens' and that the quote is for a 'given ETH amount,' aligning with the schema, but this is not significant beyond what the schema already states. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Get buy quotes for multiple tokens at once.' It specifies both the verb and the resource, and the reference to 'multiple LaunchPad tokens' distinguishes it from sibling tools that handle watching launches, sniping buys, or checking safety.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear use case with 'Useful for comparing opportunities,' which implies when this tool should be used. However, it does not explicitly state when not to use it or mention alternatives, though the sibling tool names make the distinction evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
snipe_buyA
Buy a token on the OBSD LaunchPad with ETH via PlatformRouter. 0.5% ETH fee goes to platform treasury. Requires DEPLOYER_PRIVATE_KEY env var. Returns tx hash and tokens received.
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Token contract address to buy | |
| eth_amount | Yes | Amount of ETH to spend (e.g. '0.001') | |
| slippage_percent | No | Max slippage % (default 10 — higher for new launches) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses a 0.5% platform fee, the DEPLOYER_PRIVATE_KEY requirement, and the return value (tx hash and tokens received). These go beyond the schema and provide critical behavioral context for an agent, though it does not cover failure modes or slippage behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three concise sentences: the first states the core action and mechanism, the second covers the fee, and the third lists the env var requirement and return value. Each sentence adds necessary information without redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description appropriately includes the return format ('tx hash and tokens received'). It also covers prerequisites (env var) and costs (fee). It could optionally mention potential failure conditions or slippage application, but for a simple buy operation, the current coverage is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters (token, eth_amount, slippage_percent). The description adds no additional parameter-specific semantics beyond global fee info, which is not tied to any single parameter. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Buy a token on the OBSD LaunchPad with ETH via PlatformRouter.' This clearly distinguishes it from sibling tools like watch_launches or multi_quote, which serve monitoring and quoting purposes. No ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through its action-oriented phrasing ('Buy a token...') but does not explicitly mention when to use this tool versus alternatives, nor does it provide exclusions or alternative tool references. The context (LaunchPad, ETH, fee) gives clear situational hints, but explicit guidance is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
watch_launchesA
Get recent token launches from the OBSD LaunchPad on Base. Returns newest first with token address, pool, creator, name, symbol, supply, and launch timestamp. Use this to discover newly deployed tokens to trade.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of recent launches to return (default 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the ordering behavior ('newest first') and enumerates the exact fields returned, giving an agent a good sense of the output. It does not mention limitations like rate limits or pagination, but for a simple read tool this is reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the main action and resource. The first sentence states the purpose and output fields; the second gives a clear use case. There is no wasted wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only one optional parameter and no output schema, the description is sufficiently complete: it explains the ordering, return fields, and use case. Minor gaps like not describing the limit parameter in prose are covered by the schema, so the overall context is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage for the single 'limit' parameter, including a default value and description. The tool description does not add additional parameter semantics, relying on the schema, which matches the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Get' with the resource 'recent token launches from the OBSD LaunchPad on Base', clearly indicating a retrieval operation. It enumerates the returned fields (token address, pool, creator, etc.), which distinguishes it from siblings like get_launch_feed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear use context: 'Use this to discover newly deployed tokens to trade.' It implies when to use the tool but does not explicitly state when not to use it or mention alternative tools, so it lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The two launch retrieval tools (watch_launches and get_launch_feed) have overlapping purposes; agents might struggle to pick between them. The other tools are distinct and well-separated.
Naming styles are mixed: 'multi_quote' and 'snipe_buy' do not follow the verb_noun pattern seen in 'get_token_safety' and 'get_launch_feed'. This inconsistency makes the toolset feel less predictable.
With exactly 5 tools, the server is well-scoped for a token sniper: discovery, quoting, safety checks, and buying are all covered without unnecessary bloat.
The core workflow of discovering and buying tokens is fully covered. However, there is no sell mechanism or direct token lookup by address, which are minor gaps for a complete sniper tool.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for AI agents to discover campaigns by humans and donate USDC directly on Base.
Crypto market intelligence, token rug-checks, and wallet verification in one MCP server.
MCP server giving AI agents one-connection access to crypto & DeFi data: DeFi protocol TVL, stableco
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceAn MCP server that enables AI agents to interact with PumpSwap for real-time token swaps and automated on-chain trading.7MIT
- AlicenseNot gradedqualityFmaintenanceAn MCP server that enables AI agents to launch, buy, and sell tokens on the Raydium Launchpad(aka LaunchLab).4MIT
- AlicenseAqualityDmaintenanceAn MCP server that provides AI agents with real-time access to DEX liquidity pool data, enabling smarter trading, analytics, and automated strategies.101MIT
- AlicenseAqualityDmaintenanceAn MCP server for AI agents to lock, manage, and withdraw LP tokens on Base with time-based unlock.6161MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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/lordbasilaiassistant-sudo/base-token-sniper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server