agentweb-mcp 1.1.0 → 1.1.2
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 +35 -2
- package/dist/index.js +1 -1
- package/package.json +16 -1
package/README.md
CHANGED
|
@@ -1,9 +1,43 @@
|
|
|
1
1
|
# AgentWeb MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/agentweb-mcp)
|
|
4
|
+
[](https://www.npmjs.com/package/agentweb-mcp)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://modelcontextprotocol.io)
|
|
7
|
+
[](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:
|
|
@@ -188,8 +222,7 @@ npm run build
|
|
|
188
222
|
|
|
189
223
|
- **Get an API key:** https://agentweb.live/#signup
|
|
190
224
|
- **API docs:** https://api.agentweb.live/docs
|
|
191
|
-
- **Issues:** https://github.com/zerabic/agentweb-mcp/issues
|
|
192
|
-
- **Email:** ms.olsen@outlook.com
|
|
225
|
+
- **Issues / contact:** https://github.com/zerabic/agentweb-mcp/issues
|
|
193
226
|
|
|
194
227
|
## License
|
|
195
228
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentweb-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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": "",
|