@agentbodega/mcp 0.1.2 → 0.1.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/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.3";
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,6 +1,7 @@
1
1
  {
2
2
  "name": "@agentbodega/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
+ "mcpName": "io.github.agentbodegastore/agentbodega-mcp",
4
5
  "description": "MCP discovery server for AgentBodega x402-ready paid data tools.",
5
6
  "type": "module",
6
7
  "license": "MIT",
package/server.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
- "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
3
- "name": "io.github.agentbodegastore.agentbodega-mcp",
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.agentbodegastore/agentbodega-mcp",
4
+ "title": "AgentBodega MCP",
4
5
  "description": "MCP discovery server for AgentBodega x402-ready paid data tools.",
5
6
  "status": "active",
6
7
  "repository": {
@@ -9,24 +10,25 @@
9
10
  "id": "agentbodegastore/agentbodega",
10
11
  "subfolder": "packages/agentbodega-mcp"
11
12
  },
12
- "version": "0.1.2",
13
+ "version": "0.1.3",
13
14
  "packages": [
14
15
  {
15
- "registry_type": "npm",
16
- "registry_base_url": "https://registry.npmjs.org",
16
+ "registryType": "npm",
17
+ "registryBaseUrl": "https://registry.npmjs.org",
17
18
  "identifier": "@agentbodega/mcp",
18
- "version": "0.1.2",
19
+ "version": "0.1.3",
19
20
  "transport": {
20
21
  "type": "stdio"
21
22
  },
22
- "runtime_hint": "npx",
23
- "package_arguments": [],
24
- "environment_variables": [
23
+ "runtimeHint": "npx",
24
+ "packageArguments": [],
25
+ "environmentVariables": [
25
26
  {
26
27
  "name": "AGENTBODEGA_BASE_URL",
27
28
  "description": "Optional AgentBodega service URL. Defaults to https://agentbodega.store.",
28
- "is_required": false,
29
- "is_secret": false
29
+ "isRequired": false,
30
+ "isSecret": false,
31
+ "format": "string"
30
32
  }
31
33
  ]
32
34
  }