-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@bytesbrains/mcp-textbrowser",
"version": "1.1.3",
"description": "MCP server — text-first headless browser with DOM + OCR. Zero image tokens by default. 5-15x cheaper than screenshot-based browser MCPs.",
"keywords": [
"mcp",
"mcp-server",
"browser",
"playwright",
"ocr",
"tesseract",
"claude-code",
"ai-agent",
"automation"
],
"author": "BytesBrains Pte Ltd (https://bytesbrains.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbrains/mcp-textbrowser.git"
},
"homepage": "https://github.com/bytesbrains/mcp-textbrowser#readme",
"bugs": {
"url": "https://github.com/bytesbrains/mcp-textbrowser/issues"
},
"license": "MIT",
"type": "module",
"bin": {
"mcp-textbrowser": "./dist/index.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --external:playwright --external:tesseract.js \"--banner:js=#!/usr/bin/env node\" && chmod +x dist/index.js",
"dev": "tsx --watch src/index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"playwright": "^1.50.0",
"tesseract.js": "^7.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"esbuild": "^0.28.1",
"tsx": "^4.19.0"
}
}