mcpbrowser 0.2.26 → 0.2.27

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.
Binary file
@@ -1,35 +1,56 @@
1
1
  <svg width="128" height="128" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg">
2
- <!-- Background circle -->
3
- <circle cx="64" cy="64" r="60" fill="#0078D4"/>
4
-
5
- <!-- Browser window outline -->
6
- <rect x="24" y="28" width="80" height="56" rx="4" fill="white"/>
7
- <rect x="28" y="32" width="72" height="48" rx="2" fill="#E8F4FD"/>
8
-
9
- <!-- Browser chrome bar -->
10
- <rect x="28" y="32" width="72" height="8" fill="#0078D4"/>
11
-
12
- <!-- Browser dots (window controls) -->
13
- <circle cx="33" cy="36" r="1.5" fill="white"/>
14
- <circle cx="38" cy="36" r="1.5" fill="white"/>
15
- <circle cx="43" cy="36" r="1.5" fill="white"/>
16
-
17
- <!-- Lock/Shield icon (authentication symbol) -->
18
- <g transform="translate(48, 48)">
19
- <!-- Shield -->
20
- <path d="M 16 4 L 16 14 C 16 18 12 22 8 24 C 4 22 0 18 0 14 L 0 4 L 8 0 Z"
21
- fill="#10B981" stroke="none"/>
22
- <!-- Checkmark inside shield -->
23
- <path d="M 5 12 L 7 14 L 12 8"
2
+ <!-- Modern gradient with MCP typography focus -->
3
+ <defs>
4
+ <linearGradient id="bg6" x1="0%" y1="0%" x2="100%" y2="100%">
5
+ <stop offset="0%" style="stop-color:#4F46E5;stop-opacity:1" />
6
+ <stop offset="100%" style="stop-color:#6366F1;stop-opacity:1" />
7
+ </linearGradient>
8
+ </defs>
9
+
10
+ <!-- Gradient background -->
11
+ <rect width="128" height="128" rx="24" fill="url(#bg6)"/>
12
+
13
+ <!-- Large white rounded square -->
14
+ <rect x="16" y="16" width="96" height="96" rx="16" fill="white" opacity="0.98"/>
15
+
16
+ <!-- Top section with browser chrome -->
17
+ <rect x="24" y="24" width="80" height="14" rx="7" fill="#F8FAFC"/>
18
+
19
+ <!-- Browser dots -->
20
+ <circle cx="32" cy="31" r="2" fill="#E5E7EB"/>
21
+ <circle cx="40" cy="31" r="2" fill="#E5E7EB"/>
22
+ <circle cx="48" cy="31" r="2" fill="#E5E7EB"/>
23
+
24
+ <!-- Lock with shield -->
25
+ <g transform="translate(72, 26)">
26
+ <circle cx="5" cy="5" r="5" fill="#10B981"/>
27
+ <path d="M 3.5 5 L 3.5 3.8 C 3.5 3 4 2.5 5 2.5 C 6 2.5 6.5 3 6.5 3.8 L 6.5 5"
28
+ stroke="white" stroke-width="0.8" fill="none"/>
29
+ <rect x="3" y="5" width="4" height="4" rx="0.5" fill="white"/>
30
+ </g>
31
+
32
+ <!-- Large MCP text - main focus -->
33
+ <text x="64" y="68" font-family="Arial, sans-serif" font-size="32" font-weight="bold" fill="#4F46E5" text-anchor="middle">MCP</text>
34
+
35
+ <!-- Subtitle -->
36
+ <text x="64" y="82" font-family="Arial, sans-serif" font-size="9" fill="#475569" text-anchor="middle">BROWSER</text>
37
+
38
+ <!-- Bottom decorative line -->
39
+ <rect x="36" y="92" width="56" height="2" rx="1" fill="#E0E7FF"/>
40
+
41
+ <!-- Connection dots -->
42
+ <circle cx="44" cy="100" r="2.5" fill="#10B981"/>
43
+ <circle cx="52" cy="100" r="2.5" fill="#10B981" opacity="0.6"/>
44
+ <circle cx="60" cy="100" r="2.5" fill="#10B981" opacity="0.3"/>
45
+
46
+ <!-- Security badge -->
47
+ <g transform="translate(66, 96)">
48
+ <circle cx="6" cy="4" r="6" fill="#10B981"/>
49
+ <path d="M 4 4 L 5.5 5.5 L 8.5 2.5"
24
50
  stroke="white"
25
- stroke-width="2"
51
+ stroke-width="1.2"
26
52
  stroke-linecap="round"
27
53
  stroke-linejoin="round"
28
54
  fill="none"/>
29
55
  </g>
30
-
31
- <!-- Connection indicator (small dots) -->
32
- <circle cx="90" cy="48" r="3" fill="#10B981"/>
33
- <circle cx="98" cy="48" r="2" fill="#10B981" opacity="0.7"/>
34
- <circle cx="104" cy="48" r="1.5" fill="#10B981" opacity="0.4"/>
35
56
  </svg>
@@ -2,7 +2,7 @@
2
2
  "name": "mcpbrowser",
3
3
  "displayName": "MCP Browser",
4
4
  "description": "Lightweight MCP server-extension for in-browser web page fetching - handles login, SSO, and anti-crawler restrictions. Should be used when standard fetch_webpage fails",
5
- "version": "0.2.26",
5
+ "version": "0.2.27",
6
6
  "publisher": "cherchyk",
7
7
  "icon": "icon.png",
8
8
  "engines": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  { "name": "mcpbrowser",
2
- "version": "0.2.26",
2
+ "version": "0.2.27",
3
3
  "mcpName": "io.github.cherchyk/browser",
4
4
  "type": "module",
5
5
  "description": "MCP server for in-browser web page fetching using Chrome DevTools Protocol",