gadgethumans-mcp 1.0.2 → 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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
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.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.0 — ${ALL_TOOLS.length} tools`);
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,6 +1,6 @@
1
1
  {
2
2
  "name": "gadgethumans-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
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
5
  "mcpName": "io.github.scotia1973-bot/gadgethumans-mcp",
6
6
  "type": "module",