@openweb-dev/mcp-server 0.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 +105 -0
- package/dist/index.js +146393 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openweb-dev/mcp-server",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "MCP server for OpenWeb — the booking-grade reliability layer for AI agents. Self-host with docker-compose for free, OR set OPENWEB_BRAIN_URL + OPENWEB_BRAIN_KEY to point at the hosted brain.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/songzeli/openweb.git",
|
|
9
|
+
"directory": "packages/mcp-server"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/songzeli/openweb#readme",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"mcp",
|
|
14
|
+
"ai-agents",
|
|
15
|
+
"web-automation",
|
|
16
|
+
"booking",
|
|
17
|
+
"claude",
|
|
18
|
+
"cursor",
|
|
19
|
+
"model-context-protocol",
|
|
20
|
+
"recipe-replay",
|
|
21
|
+
"stagehand",
|
|
22
|
+
"playwright",
|
|
23
|
+
"openweb"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "dist/index.js",
|
|
27
|
+
"bin": {
|
|
28
|
+
"openweb-mcp-server": "dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist/",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE"
|
|
34
|
+
],
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=esm --outfile=dist/index.js --external:playwright --external:playwright-core --external:patchright-core --external:puppeteer-core --external:@anthropic-ai/sdk --external:@modelcontextprotocol/sdk --external:postgres --external:zod --external:devtools-protocol --banner:js=\"#!/usr/bin/env node\nimport { createRequire as __openwebCreateRequire } from 'module';\nconst require = __openwebCreateRequire(import.meta.url);\"",
|
|
40
|
+
"build:tsc": "tsc",
|
|
41
|
+
"dev": "tsx watch src/index.ts",
|
|
42
|
+
"test": "vitest run"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@anthropic-ai/sdk": "^0.86.0",
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
47
|
+
"devtools-protocol": "^0.0.1632630",
|
|
48
|
+
"playwright": "^1.59.1",
|
|
49
|
+
"postgres": "^3.4.9",
|
|
50
|
+
"zod": "^3.25.76"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^25.5.2",
|
|
54
|
+
"@openweb-dev/db": "workspace:*",
|
|
55
|
+
"@openweb-dev/engine": "workspace:*",
|
|
56
|
+
"@openweb-dev/shared": "workspace:*",
|
|
57
|
+
"esbuild": "^0.28.0"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=20"
|
|
61
|
+
}
|
|
62
|
+
}
|