rwagenthub-mcp 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# rwagenthub-mcp
|
|
2
2
|
|
|
3
3
|
MCP server for [AgentHub](https://agents-production-73c1.up.railway.app) — gives any MCP-compatible AI client access to 19 APIs (flights, hotels, weather, crypto, DeFi, web search, code execution, and more) paid automatically via [x402](https://x402.org) USDC micropayments on Base.
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Create a dedicated wallet on Base Mainnet and fund it with a few USDC. You can u
|
|
|
24
24
|
"mcpServers": {
|
|
25
25
|
"agenthub": {
|
|
26
26
|
"command": "npx",
|
|
27
|
-
"args": ["-y", "
|
|
27
|
+
"args": ["-y", "rwagenthub-mcp"],
|
|
28
28
|
"env": {
|
|
29
29
|
"MCP_WALLET_PRIVATE_KEY": "0x..."
|
|
30
30
|
}
|
|
@@ -41,29 +41,29 @@ The server fetches the latest API list from the gateway on startup — no manual
|
|
|
41
41
|
|
|
42
42
|
## Available tools
|
|
43
43
|
|
|
44
|
-
| Tool | Description |
|
|
45
|
-
|
|
46
|
-
| `flight_search` | Search flights between airports (Duffel) |
|
|
47
|
-
| `flight_status` | Get flight status by carrier + number |
|
|
48
|
-
| `seat_map` | Seat map for a Duffel offer |
|
|
49
|
-
| `airport_search` | List airports by country |
|
|
50
|
-
| `hotel_search` | Search hotels in a city (Amadeus) |
|
|
51
|
-
| `activities_search` | Tours and activities near a location |
|
|
52
|
-
| `web_search` | Google search results (Serper) |
|
|
53
|
-
| `web_search_ai` | AI-powered search with summaries (LangSearch) |
|
|
54
|
-
| `places_search` | Places and businesses via Google Maps data |
|
|
55
|
-
| `image_search` | Image search |
|
|
56
|
-
| `shopping_search` | Product search across online stores |
|
|
57
|
-
| `weather_forecast` | Current + 15-day forecast (Visual Crossing) |
|
|
58
|
-
| `url_extract` | Extract text content from any URL |
|
|
59
|
-
| `exchange_rate` | Currency exchange rates (ECB/Frankfurter) |
|
|
60
|
-
| `crypto_price` | Crypto prices and 24h change |
|
|
61
|
-
| `defi_market_snapshot` | DeFi TVL, top protocols, DEX volume (DeFiLlama) |
|
|
62
|
-
| `defi_yields` | Best yield farming pools (DeFiLlama) |
|
|
63
|
-
| `code_exec` | Execute code in an isolated sandbox (e2b) |
|
|
64
|
-
| `email_send` | Send transactional email (Resend) |
|
|
65
|
-
|
|
66
|
-
Prices are in USDC
|
|
44
|
+
| Tool | Description |
|
|
45
|
+
|------|-------------|
|
|
46
|
+
| `flight_search` | Search flights between airports (Duffel) |
|
|
47
|
+
| `flight_status` | Get flight status by carrier + number |
|
|
48
|
+
| `seat_map` | Seat map for a Duffel offer |
|
|
49
|
+
| `airport_search` | List airports by country |
|
|
50
|
+
| `hotel_search` | Search hotels in a city (Amadeus) |
|
|
51
|
+
| `activities_search` | Tours and activities near a location |
|
|
52
|
+
| `web_search` | Google search results (Serper) |
|
|
53
|
+
| `web_search_ai` | AI-powered search with summaries (LangSearch) |
|
|
54
|
+
| `places_search` | Places and businesses via Google Maps data |
|
|
55
|
+
| `image_search` | Image search |
|
|
56
|
+
| `shopping_search` | Product search across online stores |
|
|
57
|
+
| `weather_forecast` | Current + 15-day forecast (Visual Crossing) |
|
|
58
|
+
| `url_extract` | Extract text content from any URL |
|
|
59
|
+
| `exchange_rate` | Currency exchange rates (ECB/Frankfurter) |
|
|
60
|
+
| `crypto_price` | Crypto prices and 24h change |
|
|
61
|
+
| `defi_market_snapshot` | DeFi TVL, top protocols, DEX volume (DeFiLlama) |
|
|
62
|
+
| `defi_yields` | Best yield farming pools (DeFiLlama) |
|
|
63
|
+
| `code_exec` | Execute code in an isolated sandbox (e2b) |
|
|
64
|
+
| `email_send` | Send transactional email (Resend) |
|
|
65
|
+
|
|
66
|
+
Each tool shows its current price in the description when loaded. Prices are in USDC, charged per call via x402 on Base Mainnet.
|
|
67
67
|
|
|
68
68
|
## How it works
|
|
69
69
|
|
|
@@ -71,7 +71,7 @@ Prices are in USDC and charged per call via x402 on Base Mainnet.
|
|
|
71
71
|
Your MCP client (Claude Desktop, Cursor, etc.)
|
|
72
72
|
│ stdio
|
|
73
73
|
▼
|
|
74
|
-
|
|
74
|
+
rwagenthub-mcp (this package)
|
|
75
75
|
│ POST /v1/call + x402 auto-payment
|
|
76
76
|
▼
|
|
77
77
|
AgentHub Gateway (Railway)
|
package/package.json
CHANGED