agentweb-mcp 1.1.0 → 1.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.
Files changed (3) hide show
  1. package/README.md +34 -0
  2. package/dist/index.js +1 -1
  3. package/package.json +16 -1
package/README.md CHANGED
@@ -1,9 +1,43 @@
1
1
  # AgentWeb MCP Server
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/agentweb-mcp.svg?color=10b981)](https://www.npmjs.com/package/agentweb-mcp)
4
+ [![npm downloads](https://img.shields.io/npm/dw/agentweb-mcp.svg?color=10b981)](https://www.npmjs.com/package/agentweb-mcp)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![MCP Compatible](https://img.shields.io/badge/MCP-Compatible-blue)](https://modelcontextprotocol.io)
7
+ [![Free for AI agents](https://img.shields.io/badge/Free%20for%20AI%20agents-0%2C-blueviolet)](https://agentweb.live)
8
+
3
9
  MCP (Model Context Protocol) server for [AgentWeb.live](https://agentweb.live) — a free, agent-first business directory API with **12M+ businesses across 231 countries**.
4
10
 
5
11
  > 🆕 **v1.1.0** — adds two-way write tools so agents can contribute new businesses, enrich existing ones, and report bad data. AgentWeb is now a self-healing network, not a one-way feed.
6
12
 
13
+ ## ⚡ 60-second Quickstart
14
+
15
+ ```bash
16
+ # 1. Get a free API key (no credit card)
17
+ # → https://agentweb.live/#signup
18
+
19
+ # 2. Add this to your Claude Desktop / Cursor / Continue config
20
+ ```
21
+
22
+ ```json
23
+ {
24
+ "mcpServers": {
25
+ "agentweb": {
26
+ "command": "npx",
27
+ "args": ["-y", "agentweb-mcp"],
28
+ "env": { "AGENTWEB_API_KEY": "aw_live_your_key_here" }
29
+ }
30
+ }
31
+ }
32
+ ```
33
+
34
+ ```bash
35
+ # 3. Restart your client and ask:
36
+ # "Find a coffee shop near Tivoli Copenhagen with phone and opening hours"
37
+ #
38
+ # Done. Your agent now has access to 12M+ businesses.
39
+ ```
40
+
7
41
  ## What It Does
8
42
 
9
43
  This MCP server gives any Claude Desktop / Cursor / Continue / LangChain / OpenAI-Agents-SDK / etc. AI agent six tools:
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ class AgentWebServer {
10
10
  this.config = config;
11
11
  this.server = new Server({
12
12
  name: "agentweb-mcp",
13
- version: "1.1.0",
13
+ version: "1.1.1",
14
14
  }, {
15
15
  capabilities: {
16
16
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentweb-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "mcpName": "io.github.zerabic/agentweb",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,6 +28,21 @@
28
28
  "model-context-protocol",
29
29
  "agentweb",
30
30
  "business-directory",
31
+ "directory",
32
+ "places",
33
+ "geo",
34
+ "geosearch",
35
+ "phone",
36
+ "openstreetmap",
37
+ "osm",
38
+ "local-business",
39
+ "yellow-pages",
40
+ "claude-desktop",
41
+ "cursor",
42
+ "langchain",
43
+ "ai-agent",
44
+ "agent-tools",
45
+ "free",
31
46
  "api"
32
47
  ],
33
48
  "author": "",