@agentbodega/mcp 0.1.0 → 0.1.1

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
@@ -1,11 +1,14 @@
1
1
  # AgentBodega MCP
2
2
 
3
- Free MCP discovery surface for [AgentBodega](https://agentbodega.store).
4
-
5
- This server does not proxy paid calls. It helps agents search the live catalog,
6
- inspect input/output contracts, and generate x402 HTTP call snippets. Paid
7
- execution stays on AgentBodega's HTTP endpoints so x402 settlement and receipts
8
- remain auditable.
3
+ Give agents a live menu of paid, x402-ready data tools from
4
+ [AgentBodega](https://agentbodega.store).
5
+
6
+ This MCP server lets agents discover what AgentBodega sells, compare endpoint
7
+ prices, inspect required inputs and response formats, and generate ready-to-run
8
+ x402 HTTP calls. Agents get the buying instructions for each resource without
9
+ guessing schemas or scraping docs, while execution stays on AgentBodega's hosted
10
+ endpoints where payment settlement, receipts, and fresh catalog metadata are
11
+ handled by the service.
9
12
 
10
13
  ## Install
11
14
 
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
3
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4
4
  import { z } from "zod/v4";
5
- const VERSION = "0.1.0";
5
+ const VERSION = "0.1.1";
6
6
  const DEFAULT_BASE_URL = "https://agentbodega.store";
7
7
  function baseUrl() {
8
8
  const raw = process.env.AGENTBODEGA_BASE_URL || DEFAULT_BASE_URL;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agentbodega/mcp",
3
- "version": "0.1.0",
4
- "description": "Free MCP discovery surface for AgentBodega paid HTTP/x402 resources.",
3
+ "version": "0.1.1",
4
+ "description": "MCP discovery server for AgentBodega x402-ready paid data tools.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "homepage": "https://agentbodega.store",
package/server.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
3
3
  "name": "io.github.agentbodegastore.agentbodega-mcp",
4
- "description": "Free MCP discovery surface for AgentBodega paid HTTP/x402 resources.",
4
+ "description": "MCP discovery server for AgentBodega x402-ready paid data tools.",
5
5
  "status": "active",
6
6
  "repository": {
7
7
  "url": "https://github.com/agentbodegastore/agentbodega",
@@ -9,13 +9,13 @@
9
9
  "id": "agentbodegastore/agentbodega",
10
10
  "subfolder": "packages/agentbodega-mcp"
11
11
  },
12
- "version": "0.1.0",
12
+ "version": "0.1.1",
13
13
  "packages": [
14
14
  {
15
15
  "registry_type": "npm",
16
16
  "registry_base_url": "https://registry.npmjs.org",
17
17
  "identifier": "@agentbodega/mcp",
18
- "version": "0.1.0",
18
+ "version": "0.1.1",
19
19
  "transport": {
20
20
  "type": "stdio"
21
21
  },