@agentbodega/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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 AgentBodega
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -22,6 +22,15 @@ Optional environment:
22
22
  AGENTBODEGA_BASE_URL=https://agentbodega.store
23
23
  ```
24
24
 
25
+ ## Network access
26
+
27
+ This package intentionally uses outbound HTTPS requests at runtime to read
28
+ AgentBodega's live catalog, x402 discovery document, and OpenAPI contract. It
29
+ does not run install scripts, spawn shells, bundle dependencies, or execute paid
30
+ calls. By default it connects to `https://agentbodega.store`; set
31
+ `AGENTBODEGA_BASE_URL` only when you want to point the MCP server at another
32
+ AgentBodega deployment.
33
+
25
34
  ## Claude Desktop
26
35
 
27
36
  ```json
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- const VERSION = "0.1.2";
2
+ const VERSION = "0.1.4";
3
3
  const DEFAULT_BASE_URL = "https://agentbodega.store";
4
4
  const INSTRUCTIONS = "Use this server to discover AgentBodega offerings, inspect accepted inputs and examples, and generate HTTP/x402 call snippets. Do not use it to execute paid calls directly.";
5
5
  class RpcError extends Error {
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@agentbodega/mcp",
3
- "version": "0.1.2",
4
- "description": "MCP discovery server for AgentBodega x402-ready paid data tools.",
3
+ "version": "0.1.4",
4
+ "mcpName": "io.github.agentbodegastore/agentbodega-mcp",
5
+ "description": "Discover AgentBodega paid data tools, contracts, and x402 HTTP call snippets.",
5
6
  "type": "module",
6
7
  "license": "MIT",
7
8
  "homepage": "https://agentbodega.store",
@@ -27,6 +28,7 @@
27
28
  },
28
29
  "files": [
29
30
  "dist",
31
+ "LICENSE",
30
32
  "README.md",
31
33
  "server.json"
32
34
  ],
package/server.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
- "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
3
- "name": "io.github.agentbodegastore.agentbodega-mcp",
4
- "description": "MCP discovery server for AgentBodega x402-ready paid data tools.",
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.agentbodegastore/agentbodega-mcp",
4
+ "title": "AgentBodega MCP",
5
+ "description": "Discover AgentBodega paid data tools, contracts, and x402 HTTP call snippets.",
5
6
  "status": "active",
6
7
  "repository": {
7
8
  "url": "https://github.com/agentbodegastore/agentbodega",
@@ -9,24 +10,48 @@
9
10
  "id": "agentbodegastore/agentbodega",
10
11
  "subfolder": "packages/agentbodega-mcp"
11
12
  },
12
- "version": "0.1.2",
13
+ "websiteUrl": "https://agentbodega.store",
14
+ "version": "0.1.4",
15
+ "icons": [
16
+ {
17
+ "src": "https://agentbodega.store/favicon.ico",
18
+ "mimeType": "image/png",
19
+ "sizes": [
20
+ "48x48"
21
+ ]
22
+ },
23
+ {
24
+ "src": "https://agentbodega.store/favicon.svg",
25
+ "mimeType": "image/svg+xml",
26
+ "sizes": [
27
+ "any"
28
+ ]
29
+ }
30
+ ],
13
31
  "packages": [
14
32
  {
15
- "registry_type": "npm",
16
- "registry_base_url": "https://registry.npmjs.org",
33
+ "registryType": "npm",
34
+ "registryBaseUrl": "https://registry.npmjs.org",
17
35
  "identifier": "@agentbodega/mcp",
18
- "version": "0.1.2",
36
+ "version": "0.1.4",
19
37
  "transport": {
20
38
  "type": "stdio"
21
39
  },
22
- "runtime_hint": "npx",
23
- "package_arguments": [],
24
- "environment_variables": [
40
+ "runtimeHint": "npx",
41
+ "runtimeArguments": [
42
+ {
43
+ "type": "positional",
44
+ "value": "-y"
45
+ }
46
+ ],
47
+ "packageArguments": [],
48
+ "environmentVariables": [
25
49
  {
26
50
  "name": "AGENTBODEGA_BASE_URL",
27
51
  "description": "Optional AgentBodega service URL. Defaults to https://agentbodega.store.",
28
- "is_required": false,
29
- "is_secret": false
52
+ "isRequired": false,
53
+ "isSecret": false,
54
+ "format": "string"
30
55
  }
31
56
  ]
32
57
  }