Back to Browse

Alien Plugg X402 MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

32 paid x402 endpoints for crypto, Zora & on-chain analysis. 10 MCP tools. USDC on Base.

About

32 paid x402 endpoints for crypto, Zora & on-chain analysis. 10 MCP tools. USDC on Base.

Remote endpoints: streamable-http: https://base44.app/api/apps/6a5fdd57651262e86b24133e/functions/mcpHandshake

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

10 tools verified ยท Open access ยท No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-michaelhutchings626-hub-alien-plugg-x402": {
      "url": "https://base44.app/api/apps/6a5fdd57651262e86b24133e/functions/mcpHandshake"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

๐Ÿ‘ฝ Alien Plugg x402 API SDK

x402 Enabled Base Network USDC Payment MCP Protocol

"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/discovery

2. 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())

๐Ÿ“‹ Full API Endpoint Catalog (30 Endpoints)

Base URL: https://x402.bankr.bot/0xabf922abb2a9e782f0b187d5d1ab24deb4870c3d/

1. Crypto & Trading

EndpointPrice (USDC)Description
zora-scanner$0.010Trending Zora coins + BUY / SELL / STRONG_BUY trading signals
robinhood-scanner$0.010Robinhood Chain trending tokens + momentum signals
zora-rug-check$0.020Rug risk scoring (0-100) + LOW/MEDIUM/HIGH/CRITICAL verdict
zora-portfolio$0.005Wallet token holdings, PnL tracking, and asset allocation
zora-sentiment$0.050Social sentiment scoring + ACCUMULATE/HOLD/REDUCE recommendations
token-price$0.015Real-time token pricing lookup by ID, symbol, or contract address
token-compare$0.005Side-by-side token comparison + automated winner verdict
chart-roast$0.008Brutal technical chart analysis + market breakdown
alien-plugg-alpha$0.050Daily curated trading signals โ€” top alpha picks, rug warnings, DCA strategies
honeypot-check$0.040On-chain honeypot detection โ€” tests buy/sell tax & execute rights
price-alerts$0.008Token price alert trigger management & state tracking

2. On-Chain Analysis & Forensics

EndpointPrice (USDC)Description
whale-tracker$0.080Real-time whale transfer detection on Base network
wallet-profile$0.003On-chain wallet profiler + behavioral labels & historical activity
smart-money$0.080Track smart money wallets, accumulation patterns, and DEX flow
dex-flow$0.120Uniswap V3 liquidity flow & volume depth analysis
new-launches$0.010Fresh token launch scanner on Zora & Base
creator-lookup$0.010Token creator profile analysis + portfolio of launched coins
gas-tracker$0.002Real-time Base network gas prices & fee estimates
tx-status$0.002Transaction execution status & receipt parser
holder-analysis$0.030Token holder concentration, distribution, and Gini coefficient

3. Web & Utility Tools

EndpointPrice (USDC)Description
translate$0.005Multi-language translation API supporting 100+ languages
ip-info$0.0015IP geolocation, ISP detection, and VPN/proxy flags
expand-url$0.015URL shortener expansion & HTTP redirect chain tracer
tech-stack-detect$0.008Website technology stack fingerprinting
webpage-diff$0.030Webpage content change monitoring + visual diff
builder-score$0.008AI-powered developer & builder reputation score

4. Discovery & Protocol Handshake

EndpointPrice (USDC)Description
discoveryFREEFull catalog of endpoints, prices, descriptions, and token metadata
.well-known/x402.jsonFREEStandard x402 service discovery manifest
mcp-server / mcpHandshake$0.005Model Context Protocol (MCP) server providing 10 curated tools for AI agents
healthFREEGateway 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-alpha

Python (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.json
  • Windows: %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

๐Ÿช™ Token Contracts


๐Ÿ“„ License

MIT License. Built for the open AI agent ecosystem.

Reviews

No reviews yet

Be the first to review this server!