Alien Plugg x402 MCP Server
Provides tools for tracking trending tokens and momentum signals on Robinhood Chain.
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., "@Alien Plugg x402 MCP ServerCheck the zora-scanner for trending tokens with buy signals"
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.
👽 Alien Plugg x402 API SDK
"What I have is outta this world 👽🌌"
Welcome to the Alien Plugg x402 API SDK. Alien Plugg operates 30 pay-per-call x402 API endpoints and a Model Context Protocol (MCP) server on the Base network (Chain ID 8453). Built specifically for AI agents, trading bots, and Web3 developers, every endpoint is monetized natively using the open x402 protocol with USDC payments.
⚡ Quick Start (Time to First "Hello World" < 60s)
No API keys or registration required. You only pay micro-fractions of USDC per request via your EVM wallet.
1. Free Endpoint Discovery (0 Seconds Setup)
Fetch the live catalog of all available endpoints in less than 5 seconds:
curl -s https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/discovery2. Make Your First Paid Request (< 60 Seconds)
To make pay-per-call requests, use any x402-compatible SDK (coinbase for Python or @coinbase/x402 for Node.js):
Python Quickstart
from coinbase import x402
import os
# Initialize client with your Base wallet private key
client = x402.Client(
private_key=os.getenv("EVM_PRIVATE_KEY"),
chain_id=8453 # Base
)
# Call gas-tracker ($0.002) - x402 automatically handles the HTTP 402 handshake & payment
response = client.get("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/gas-tracker")
print(response.json())Related MCP server: AgentData MCP Server
📋 Full API Endpoint Catalog (30 Endpoints)
Base URL: https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/
1. Crypto & Trading
Endpoint | Price (USDC) | Description |
|
| Trending Zora coins + BUY / SELL / STRONG_BUY trading signals |
|
| Robinhood Chain trending tokens + momentum signals |
|
| Rug risk scoring (0-100) + LOW/MEDIUM/HIGH/CRITICAL verdict |
|
| Wallet token holdings, PnL tracking, and asset allocation |
|
| Social sentiment scoring + ACCUMULATE/HOLD/REDUCE recommendations |
|
| Real-time token pricing lookup by ID, symbol, or contract address |
|
| Side-by-side token comparison + automated winner verdict |
|
| Brutal technical chart analysis + market breakdown |
|
| Daily curated trading signals — top alpha picks, rug warnings, DCA strategies |
|
| On-chain honeypot detection — tests buy/sell tax & execute rights |
|
| Token price alert trigger management & state tracking |
2. On-Chain Analysis & Forensics
Endpoint | Price (USDC) | Description |
|
| Real-time whale transfer detection on Base network |
|
| On-chain wallet profiler + behavioral labels & historical activity |
|
| Track smart money wallets, accumulation patterns, and DEX flow |
|
| Uniswap V3 liquidity flow & volume depth analysis |
|
| Fresh token launch scanner on Zora & Base |
|
| Token creator profile analysis + portfolio of launched coins |
|
| Real-time Base network gas prices & fee estimates |
|
| Transaction execution status & receipt parser |
|
| Token holder concentration, distribution, and Gini coefficient |
3. Web & Utility Tools
Endpoint | Price (USDC) | Description |
|
| Multi-language translation API supporting 100+ languages |
|
| IP geolocation, ISP detection, and VPN/proxy flags |
|
| URL shortener expansion & HTTP redirect chain tracer |
|
| Website technology stack fingerprinting |
|
| Webpage content change monitoring + visual diff |
|
| AI-powered developer & builder reputation score |
4. Discovery & Protocol Handshake
Endpoint | Price (USDC) | Description |
|
| Full catalog of endpoints, prices, descriptions, and token metadata |
|
| Standard x402 service discovery manifest |
|
| Model Context Protocol (MCP) server providing 10 curated tools for AI agents |
|
| Gateway health check and service latency metric |
💻 Code Examples
Complete script examples are located in the examples/ folder.
cURL (examples/curl.sh)
# 1. Discover endpoints (FREE)
curl -s https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/discovery
# 2. Call gas-tracker ($0.002) with x402 payment header
curl -s -H "X-PAYMENT: <x402-payment-signature>" \
https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/gas-tracker
# 3. Call daily trading signals ($0.05)
curl -s -H "X-PAYMENT: <x402-payment-signature>" \
https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/alien-plugg-alphaPython (examples/python.py)
import os
import json
from coinbase import x402
# Initialize Coinbase x402 client
x402_client = x402.Client(
private_key=os.getenv("EVM_PRIVATE_KEY"),
chain_id=8453
)
# 1. Free endpoint discovery
discovery_data = x402_client.get("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/discovery").json()
# 2. Call gas-tracker ($0.002)
gas_data = x402_client.get("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/gas-tracker").json()
# 3. Fetch Alien Plugg Alpha Daily Report ($0.05)
alpha_report = x402_client.get("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/alien-plugg-alpha").json()Node.js (examples/nodejs.js)
import { x402Client } from "@coinbase/x402";
const client = new x402Client({
privateKey: process.env.EVM_PRIVATE_KEY,
chainId: 8453
});
// 1. Discover endpoints
const discovery = await fetch("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/discovery").then(r => r.json());
// 2. Call paid gas-tracker endpoint ($0.002)
const gasResponse = await client.fetch("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/gas-tracker");
const gasData = await gasResponse.json();
// 3. Fetch Alien Plugg Alpha signals ($0.05)
const alphaResponse = await client.fetch("https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/alien-plugg-alpha");
const alphaData = await alphaResponse.json();🤖 MCP Server Setup for AI Agents
Alien Plugg provides a Model Context Protocol (MCP) server exposing 10 interactive tools for LLM platforms like Claude Desktop, Cursor, and custom agentic frameworks.
MCP Server Endpoint URL:
https://base44.app/api/apps/6a5fdd57651262e86b24133e/functions/mcpHandshake
1. Claude Desktop Setup
Add the following to your claude_desktop_config.json file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"alien-plugg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch",
"https://base44.app/api/apps/6a5fdd57651262e86b24133e/functions/mcpHandshake"
]
}
}
}2. Cursor IDE Setup
Add the configuration in Cursor Settings -> Features -> MCP or in .cursor/mcp.json:
{
"mcpServers": {
"alien-plugg": {
"url": "https://base44.app/api/apps/6a5fdd57651262e86b24133e/functions/mcpHandshake",
"transport": "http"
}
}
}🔗 Official Links & Resources
🛰️ API Base URL:
https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/🔍 Discovery Endpoint:
https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/discovery🌐 Landing Page: Alien Plugg Web Portal
📄 llms.txt Specification: Alien Plugg llms.txt
🤖 MCP Handshake URL:
https://base44.app/api/apps/6a5fdd57651262e86b24133e/functions/mcpHandshake
🪙 Token Contracts
PLUGG on Base Network:
0xDe76415CeBe959CF0738e8A636d9153fF295bba3PLUGG on Robinhood Chain:
0x09d56eaCb69E85Dca856B6dc15fA6aE9eeaBFBa3
📄 License
MIT License. Built for the open AI agent ecosystem.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenance22 MCP tools for AI agents: crypto prices and trading signals (53 coins), stock prices and company financials, forex rates and conversion, and web scraping with AI summaries. All powered by x402 USDC micropayments on Base. $0.01-$0.25 per request.Last updated2229MIT
- AlicenseAqualityDmaintenanceProvides 16 crypto market data tools for MCP-compatible AI clients with x402/USDC micropayments on Base Mainnet.Last updated16MIT
- AlicenseBqualityAmaintenanceMCP server exposing x402 Bazaar's paid Base APIs (token risk/honeypot, prices, gas, wallet intel, tx decode + AI utilities) as agent tools. Your agent pays per call in USDC over x402 — no API keys, no signup.Last updated17131MIT
- AlicenseBqualityBmaintenanceAn MCP server providing 22 pay-per-call utility tools for AI agents (scrape, validate, embed, store, moderate, notify, convert, prevent loops) without accounts or API keys, using USDC payments via the x402 protocol.Last updated17501MIT
Related MCP Connectors
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
Pay-per-call data tools for AI agents: crypto signal, web reader, SEO audit. x402 USDC on Base.
30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.
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/michaelhutchings626-hub/alien-plugg-x402'
If you have feedback or need assistance with the MCP directory API, please join our Discord server