@forgemeshlabs/x402-ads-mcp 0.1.2 → 0.1.4

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/glama.json CHANGED
@@ -1,45 +1,19 @@
1
1
  {
2
2
  "$schema": "https://glama.ai/mcp/schemas/server.json",
3
- "name": "x402-ads-mcp",
4
- "version": "0.1.0",
3
+ "name": "@forgemeshlabs/x402-ads-mcp",
5
4
  "description": "Install one middleware. Monetize unused 402 responses with recommendations, discovery, and machine commerce analytics. MCP server for the ForgeMesh x402 Ads network.",
6
- "homepage": "https://ads.forgemesh.io",
7
- "repository": "https://github.com/forgemeshlabs/x402-ads-mcp",
8
5
  "maintainers": [
9
6
  "clawdbotworker"
10
7
  ],
11
- "transport": {
12
- "type": "stdio",
13
- "command": "x402-ads-mcp"
14
- },
15
- "build": {
16
- "dockerfile": "Dockerfile",
17
- "steps": [
18
- "npm ci --omit=dev"
19
- ],
20
- "cmd": [
21
- "node",
22
- "index.js"
23
- ]
24
- },
25
- "env": {
26
- "WALLET_PRIVATE_KEY": {
27
- "description": "Optional Base mainnet wallet private key for settling paid x402 analytics calls. Without it, paid tools return the x402 payment challenge instead of settling.",
28
- "required": false
29
- },
30
- "X402_ADS_PUBLISHER_KEY": {
31
- "description": "Optional publisher key from ads.forgemesh.io. Makes get_intent_report free for services you contribute events to.",
32
- "required": false
33
- },
34
- "X402_ADS_BASE_URL": {
35
- "description": "Optional intent network base URL.",
36
- "required": false,
37
- "default": "https://ads.forgemesh.io"
38
- },
39
- "BASE_RPC_URL": {
40
- "description": "Optional Base mainnet RPC URL.",
41
- "required": false,
42
- "default": "https://mainnet.base.org"
43
- }
44
- }
8
+ "tags": [
9
+ "x402",
10
+ "usdc",
11
+ "base",
12
+ "ads",
13
+ "intent",
14
+ "analytics",
15
+ "machine-commerce",
16
+ "mcp",
17
+ "autonomous-agents"
18
+ ]
45
19
  }
package/index.js CHANGED
@@ -73,7 +73,7 @@ const TOOLS = [
73
73
  name: "get_intent_report",
74
74
  title: "Get Intent Report",
75
75
  description:
76
- "Why-agents-didn't-buy funnel for one service: bounce funnel, traffic classes, top abandoned endpoints, retry signals. FREE with X402_ADS_PUBLISHER_KEY for services you contribute events to (the data co-op rule); otherwise $0.05 USDC on Base via x402. Without a publisher key or WALLET_PRIVATE_KEY, returns the x402 payment challenge.",
76
+ "Why-agents-didn't-buy funnel for one service: bounce funnel, traffic classes, top abandoned endpoints, retry signals. FREE with X402_ADS_PUBLISHER_KEY for your registered services (the service id is bound to your key at registration); otherwise $0.05 USDC on Base via x402. Without a publisher key or WALLET_PRIVATE_KEY, returns the x402 payment challenge.",
77
77
  },
78
78
  {
79
79
  name: "get_terms",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgemeshlabs/x402-ads-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "mcpName": "io.github.forgemeshlabs/x402-ads-mcp",
5
5
  "description": "Install one middleware. Monetize unused 402 responses with recommendations, discovery, and machine commerce analytics. MCP server: 7 tools for agent demand analytics, paid per call in USDC on Base; free for publishers on their own traffic.",
6
6
  "main": "index.js",
package/server.json CHANGED
@@ -1,11 +1,50 @@
1
1
  {
2
- "name": "x402-ads-mcp",
3
- "version": "0.1.0",
4
- "description": "Install one middleware. Monetize unused 402 responses with recommendations, discovery, and machine commerce analytics. MCP server for the ForgeMesh x402 Ads network.",
5
- "homepage": "https://ads.forgemesh.io",
6
- "repository": "https://github.com/forgemeshlabs/x402-ads-mcp",
7
- "transport": {
8
- "type": "stdio",
9
- "command": "x402-ads-mcp"
10
- }
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.forgemeshlabs/x402-ads-mcp",
4
+ "description": "x402 ad recommendations, intent analytics, and machine-commerce demand reports.",
5
+ "repository": {
6
+ "url": "https://github.com/forgemeshlabs/x402-ads-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "0.1.4",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "@forgemeshlabs/x402-ads-mcp",
14
+ "version": "0.1.4",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "name": "WALLET_PRIVATE_KEY",
21
+ "description": "Optional dedicated low-balance Base wallet private key for settling paid x402 analytics calls. Without it, paid tools return the x402 payment challenge instead of settling.",
22
+ "isRequired": false,
23
+ "isSecret": true,
24
+ "format": "string"
25
+ },
26
+ {
27
+ "name": "X402_ADS_PUBLISHER_KEY",
28
+ "description": "Optional publisher key from ads.forgemesh.io. Makes get_intent_report free for your registered services.",
29
+ "isRequired": false,
30
+ "isSecret": true,
31
+ "format": "string"
32
+ },
33
+ {
34
+ "name": "X402_ADS_BASE_URL",
35
+ "description": "Optional intent network base URL. Defaults to https://ads.forgemesh.io.",
36
+ "isRequired": false,
37
+ "isSecret": false,
38
+ "format": "string"
39
+ },
40
+ {
41
+ "name": "BASE_RPC_URL",
42
+ "description": "Optional Base mainnet RPC URL. Defaults to https://mainnet.base.org.",
43
+ "isRequired": false,
44
+ "isSecret": false,
45
+ "format": "string"
46
+ }
47
+ ]
48
+ }
49
+ ]
11
50
  }