npm goldbean-mcpstdioMITupdated 1mo ago
Pay per request with USDC on Base. No signup, no API key, no monthly subscription. Every call costs $0.02 USDC via the x402 protocol.
What can you do with GoldBean MCP Server?
š« GoldBean - x402 Micropaid API Marketplace
Pay per request with USDC on Base. No signup, no API key, no monthly subscription. Every call costs $0.02 USDC via the x402 protocol.
GoldBean is live: http://104.225.233.23:9879
Quick Start
1. Prerequisites
- USDC on Base (
eip155:84532testnet oreip155:8453mainnet) - A wallet that can sign x402 payments (AgentCash, CDP Wallet, or any EVM wallet)
2. Try a Free Endpoint
curl http://104.225.233.23:9879/health
# {"status":"ok","service":"GoldBean","timestamp":"2026-05-15T12:00:00.000Z"}
curl http://104.225.233.23:9879/eth-price
# {"usd":"2255.93","change24h":"+0.31%","timestamp":"2026-05-15T12:00:00.000Z"}
3. Call a Paid Endpoint
curl http://104.225.233.23:9879/paid/btc-price
# HTTP 402 Payment Required
# x402-challenge: {...}
To pay the 402 and get data, you need an x402-capable client:
Using AgentCash:
npx agentcash@latest fetch http://104.225.233.23:9879/paid/btc-price
Using x402-proxy (CLI tool):
npx x402-proxy http://104.225.233.23:9879/paid/btc-price
Using curl with manual payment (advanced):
# Step 1: Request triggers 402
curl -s -D - http://104.225.233.23:9879/paid/btc-price
# Step 2: Parse x402-challenge header, sign with your wallet
# Step 3: Retry with x402-payment header
curl -H "x402-payment: <signed-payment>" http://104.225.233.23:9879/paid/btc-price
4. MCP Integration
Add to Claude Desktop / Cursor / Cline mcpServers config:
{
"mcpServers": {
"goldbean": {
"url": "http://104.225.233.23:9879/mcp"
}
}
}
Available Endpoints
Free (no payment needed)
| Endpoint | Description |
|---|---|
GET / |
Service info & endpoint list |
GET /health |
Health check |
GET /eth-price |
Real-time ETH price (via CoinGecko) |
GET /gas |
ETH gas price estimate |
GET /card |
Service card / metadata |
GET /mcp |
MCP protocol manifest |
Paid ($0.02 USDC per call)
| Endpoint | Description |
|---|---|
GET /paid/btc-price |
Real-time BTC price (via CoinGecko) |
GET /paid/gas-forecast |
Gas price forecast |
GET /paid/market-intel |
Market sentiment & Fear & Greed Index |
GET /paid/defi-insights |
DeFi TVL & chain data |
GET /paid/network-health |
Blockchain network health |
GET /paid/tracker-report |
MEV & on-chain tracker report |
GET /paid/sol-token-risk |
Solana token risk assessment |
How x402 Payment Works
Client GoldBean Server
ā ā
āā GET /paid/btc-price āāāāāāāāāāāāāā¤
āāā 402 Payment Required āāāāāāāāāāāā¤
ā x402-challenge: {...} ā
ā ā
āā Sign challenge with wallet āāāāāāā¤
ā (off-chain, no gas fee) ā
ā ā
āā GET /paid/btc-price āāāāāāāāāāāāāā¤
ā x402-payment: <signed> ā
āāā 200 OK āāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā {"usd":"68000.00",...} ā
ā ā
The facilitator (x402.org) handles settlement. Your wallet sends USDC only when challenge is accepted. No recurring charges.
Data Sources
- CoinGecko API ā Real-time cryptocurrency prices
- Etherscan API ā Gas price oracle
- Alternative.me ā Fear & Greed Index
Seller Info
- Seller wallet:
0xB5f5CBe48E0595C044Bc626f278F757463eAc2Ce(Base) - Network:
eip155:84532(Base Sepolia testnet) ā migrating toeip155:8453(Base mainnet) - Facilitator:
https://x402.org/facilitator - Price: $0.02 USDC per paid call
Architecture
āāāāāāāāāāāāāāā x402 protocol āāāāāāāāāāāāāāāā
ā Client ā āāāāāāāāāāāāāāāāāāāāāāāŗ ā VPS (USCA) ā
ā (curl/Agent)ā HTTP + 402 flow ā GoldBean š« ā
āāāāāāāāāāāāāāā ā :9879 ā
ā āāāāāāāā¬āāāāāāāā
ā āāāāāāāāāāāāāāāā ā
āāāāāāāāāāŗā Email āāāāāāāāāāāāāāāā
ā (Gmail) ā Monitor alerts
ā Monitor ā
āāāāāāāāāāāāāāāā
Development
# Server
cd /opt/goldbean
npm install express axios @x402/express @x402/core @x402/evm
node server.js
# Monitor
python3 /opt/goldbean/chain_monitor.py
Ecosystem
Built on Bandwagon VPS (USCA-2). Part of the x402 ecosystem.
Install
Add GoldBean MCP Server to your client. Pick the one you use.
claude mcp add goldbean-mcp -- npx -y goldbean-mcpcodex mcp add goldbean-mcp -- npx -y goldbean-mcpamp mcp add goldbean-mcp -- npx -y goldbean-mcp{
"mcpServers": {
"goldbean-mcp": {
"command": "npx",
"args": [
"-y",
"goldbean-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"goldbean-mcp": {
"command": "npx",
"args": [
"-y",
"goldbean-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"goldbean-mcp","command":"npx","args":["-y","goldbean-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"goldbean-mcp": {
"command": "npx",
"args": [
"-y",
"goldbean-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"goldbean-mcp": {
"command": "npx",
"args": [
"-y",
"goldbean-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"goldbean-mcp": {
"command": "npx",
"args": [
"-y",
"goldbean-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"goldbean-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"goldbean-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"goldbean-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"goldbean-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y goldbean-mcpRun `goose configure`, choose **Add Extension ā Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance22/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 33 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.2.0Latest | Jul 15, 2026 |
| 1.1.0 | Jul 15, 2026 |
| 0.4.1 | Jul 10, 2026 |
| 1.0.0 | Jul 9, 2026 |
| 0.3.6 | Jul 8, 2026 |
| 0.3.2 | Jul 3, 2026 |
| 0.2.3 | May 28, 2026 |