gadgethumans-mcp 1.0.1 → 1.0.3
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/index.js +2 -2
- package/package.json +17 -7
package/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const WALLET_KEY = process.env.WALLET_PRIVATE_KEY || "";
|
|
|
14
14
|
const AFFILIATE_ID = process.env.PYRIMID_AFFILIATE_ID || "";
|
|
15
15
|
|
|
16
16
|
const server = new Server(
|
|
17
|
-
{ name: "gadgethumans-mcp", version: "1.0.
|
|
17
|
+
{ name: "gadgethumans-mcp", version: "1.0.2" },
|
|
18
18
|
{ capabilities: { tools: {} } }
|
|
19
19
|
);
|
|
20
20
|
|
|
@@ -275,7 +275,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
275
275
|
async function main() {
|
|
276
276
|
const transport = new StdioServerTransport();
|
|
277
277
|
await server.connect(transport);
|
|
278
|
-
console.error(`[gadgethumans-mcp] v1.0.
|
|
278
|
+
console.error(`[gadgethumans-mcp] v1.0.2 — ${ALL_TOOLS.length} tools`);
|
|
279
279
|
console.error(`[gadgethumans-mcp] Endpoint: ${ENDPOINT}`);
|
|
280
280
|
console.error(`[gadgethumans-mcp] Wallet: ${WALLET_KEY ? "configured ✓" : "not set — tools will show 402"}`);
|
|
281
281
|
console.error(`[gadgethumans-mcp] Affiliate: ${AFFILIATE_ID || "not set"}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gadgethumans-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "337
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "337 AI agent tools with x402 micropayments on Base. $0.001/call. No signup, no API keys. For Claude, Cursor, Windsurf, and any MCP client.",
|
|
5
|
+
"mcpName": "io.github.scotia1973-bot/gadgethumans-mcp",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "index.js",
|
|
7
8
|
"bin": {
|
|
@@ -12,14 +13,23 @@
|
|
|
12
13
|
},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"mcp",
|
|
16
|
+
"mcp-server",
|
|
17
|
+
"mcp-tools",
|
|
15
18
|
"x402",
|
|
16
19
|
"micropayments",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"base",
|
|
20
|
+
"agent-commerce",
|
|
21
|
+
"monetization",
|
|
22
|
+
"affiliate-routing",
|
|
21
23
|
"usdc",
|
|
22
|
-
"
|
|
24
|
+
"base",
|
|
25
|
+
"ethereum",
|
|
26
|
+
"model-context-protocol",
|
|
27
|
+
"ai-agents",
|
|
28
|
+
"autonomous-agents",
|
|
29
|
+
"crypto-payments",
|
|
30
|
+
"gadgethumans",
|
|
31
|
+
"claude",
|
|
32
|
+
"cursor"
|
|
23
33
|
],
|
|
24
34
|
"author": "GadgetHumans",
|
|
25
35
|
"license": "MIT",
|