brave-real-browser-mcp-server 2.14.7 → 2.14.9
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/dist/browser-manager.js +5 -0
- package/dist/handlers/APPLY_OPTIMIZATION_PATTERN.js +2 -2
- package/dist/handlers/advanced-video-media-handlers.js +7 -7
- package/dist/handlers/ai-powered-handlers.js +0 -197
- package/dist/handlers/data-extraction-handlers.js +0 -98
- package/dist/handlers/data-processing-handlers.js +0 -275
- package/dist/handlers/data-quality-handlers.js +0 -220
- package/dist/handlers/dynamic-session-handlers.js +0 -204
- package/dist/handlers/monitoring-reporting-handlers.js +0 -170
- package/dist/handlers/multi-element-handlers.js +0 -144
- package/dist/handlers/pagination-handlers.js +0 -191
- package/dist/handlers/visual-tools-handlers.js +0 -56
- package/dist/index.js +10 -85
- package/dist/mcp-server.js +2 -11
- package/dist/optimization-utils.js +3 -3
- package/dist/tool-definitions.js +0 -313
- package/package.json +3 -12
package/dist/tool-definitions.js
CHANGED
|
@@ -331,19 +331,6 @@ export const TOOLS = [
|
|
|
331
331
|
},
|
|
332
332
|
},
|
|
333
333
|
// Smart Data Extractors
|
|
334
|
-
{
|
|
335
|
-
name: 'scrape_table',
|
|
336
|
-
description: 'HTML tables से structured data extract करता है',
|
|
337
|
-
inputSchema: {
|
|
338
|
-
type: 'object',
|
|
339
|
-
properties: {
|
|
340
|
-
selector: { type: 'string', description: 'Table selector', default: 'table' },
|
|
341
|
-
includeHeaders: { type: 'boolean', default: true },
|
|
342
|
-
cleanData: { type: 'boolean', default: true },
|
|
343
|
-
maxRows: { type: 'number', default: 1000 },
|
|
344
|
-
},
|
|
345
|
-
},
|
|
346
|
-
},
|
|
347
334
|
{
|
|
348
335
|
name: 'extract_list',
|
|
349
336
|
description: 'Bullet lists और numbered lists से data extract करता है',
|
|
@@ -433,18 +420,6 @@ export const TOOLS = [
|
|
|
433
420
|
},
|
|
434
421
|
},
|
|
435
422
|
// Content Type Specific Extractors
|
|
436
|
-
{
|
|
437
|
-
name: 'image_scraper',
|
|
438
|
-
description: 'सभी images URLs, alt text, dimensions के साथ extract करता है',
|
|
439
|
-
inputSchema: {
|
|
440
|
-
type: 'object',
|
|
441
|
-
properties: {
|
|
442
|
-
selector: { type: 'string', default: 'img' },
|
|
443
|
-
includeDataUrls: { type: 'boolean', default: false },
|
|
444
|
-
includeDimensions: { type: 'boolean', default: true },
|
|
445
|
-
},
|
|
446
|
-
},
|
|
447
|
-
},
|
|
448
423
|
{
|
|
449
424
|
name: 'link_harvester',
|
|
450
425
|
description: 'Internal/external links classification के साथ collect करता है',
|
|
@@ -468,43 +443,7 @@ export const TOOLS = [
|
|
|
468
443
|
},
|
|
469
444
|
},
|
|
470
445
|
},
|
|
471
|
-
{
|
|
472
|
-
name: 'pdf_link_finder',
|
|
473
|
-
description: 'Downloadable files (PDF, DOC, etc.) detect करता है',
|
|
474
|
-
inputSchema: {
|
|
475
|
-
type: 'object',
|
|
476
|
-
properties: {
|
|
477
|
-
selector: { type: 'string', default: 'a[href]' },
|
|
478
|
-
includeOtherFiles: { type: 'boolean', default: true },
|
|
479
|
-
},
|
|
480
|
-
},
|
|
481
|
-
},
|
|
482
446
|
// Pagination Tools
|
|
483
|
-
{
|
|
484
|
-
name: 'auto_pagination',
|
|
485
|
-
description: 'Next button automatically detect करके pages scrape करता है',
|
|
486
|
-
inputSchema: {
|
|
487
|
-
type: 'object',
|
|
488
|
-
properties: {
|
|
489
|
-
nextButtonSelector: { type: 'string' },
|
|
490
|
-
maxPages: { type: 'number', default: 10 },
|
|
491
|
-
dataSelector: { type: 'string' },
|
|
492
|
-
waitBetweenPages: { type: 'number', default: 1000 },
|
|
493
|
-
},
|
|
494
|
-
},
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
name: 'infinite_scroll',
|
|
498
|
-
description: 'Lazy-loading pages के लिए auto-scroll करता है',
|
|
499
|
-
inputSchema: {
|
|
500
|
-
type: 'object',
|
|
501
|
-
properties: {
|
|
502
|
-
maxScrolls: { type: 'number', default: 10 },
|
|
503
|
-
scrollDelay: { type: 'number', default: 1000 },
|
|
504
|
-
dataSelector: { type: 'string' },
|
|
505
|
-
},
|
|
506
|
-
},
|
|
507
|
-
},
|
|
508
447
|
{
|
|
509
448
|
name: 'multi_page_scraper',
|
|
510
449
|
description: 'Multiple pages से data collect और merge करता है',
|
|
@@ -518,18 +457,6 @@ export const TOOLS = [
|
|
|
518
457
|
required: ['urls', 'dataSelector'],
|
|
519
458
|
},
|
|
520
459
|
},
|
|
521
|
-
{
|
|
522
|
-
name: 'sitemap_parser',
|
|
523
|
-
description: 'sitemap.xml से URLs automatically extract करता है',
|
|
524
|
-
inputSchema: {
|
|
525
|
-
type: 'object',
|
|
526
|
-
properties: {
|
|
527
|
-
sitemapUrl: { type: 'string' },
|
|
528
|
-
maxUrls: { type: 'number', default: 100 },
|
|
529
|
-
filterPattern: { type: 'string' },
|
|
530
|
-
},
|
|
531
|
-
},
|
|
532
|
-
},
|
|
533
460
|
{
|
|
534
461
|
name: 'breadcrumb_navigator',
|
|
535
462
|
description: 'Site structure follow करके navigation path extract करता है',
|
|
@@ -542,21 +469,6 @@ export const TOOLS = [
|
|
|
542
469
|
},
|
|
543
470
|
},
|
|
544
471
|
// Data Processing Tools
|
|
545
|
-
{
|
|
546
|
-
name: 'smart_text_cleaner',
|
|
547
|
-
description: 'Text cleaning - whitespace, special characters remove करता है',
|
|
548
|
-
inputSchema: {
|
|
549
|
-
type: 'object',
|
|
550
|
-
properties: {
|
|
551
|
-
text: { type: 'string' },
|
|
552
|
-
removeExtraWhitespace: { type: 'boolean', default: true },
|
|
553
|
-
removeSpecialChars: { type: 'boolean', default: false },
|
|
554
|
-
toLowerCase: { type: 'boolean', default: false },
|
|
555
|
-
trim: { type: 'boolean', default: true },
|
|
556
|
-
},
|
|
557
|
-
required: ['text'],
|
|
558
|
-
},
|
|
559
|
-
},
|
|
560
472
|
{
|
|
561
473
|
name: 'html_to_text',
|
|
562
474
|
description: 'HTML को clean text में convert करता है',
|
|
@@ -570,69 +482,7 @@ export const TOOLS = [
|
|
|
570
482
|
required: ['html'],
|
|
571
483
|
},
|
|
572
484
|
},
|
|
573
|
-
{
|
|
574
|
-
name: 'price_parser',
|
|
575
|
-
description: 'Currency symbols से actual numbers extract करता है',
|
|
576
|
-
inputSchema: {
|
|
577
|
-
type: 'object',
|
|
578
|
-
properties: {
|
|
579
|
-
text: { type: 'string' },
|
|
580
|
-
currency: { type: 'string' },
|
|
581
|
-
},
|
|
582
|
-
required: ['text'],
|
|
583
|
-
},
|
|
584
|
-
},
|
|
585
|
-
{
|
|
586
|
-
name: 'date_normalizer',
|
|
587
|
-
description: 'Different date formats को standard format में convert करता है',
|
|
588
|
-
inputSchema: {
|
|
589
|
-
type: 'object',
|
|
590
|
-
properties: {
|
|
591
|
-
text: { type: 'string' },
|
|
592
|
-
outputFormat: { type: 'string', enum: ['iso', 'locale', 'unix'], default: 'iso' },
|
|
593
|
-
timezone: { type: 'string' },
|
|
594
|
-
},
|
|
595
|
-
required: ['text'],
|
|
596
|
-
},
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
name: 'contact_extractor',
|
|
600
|
-
description: 'Phone numbers और email addresses automatically detect करता है',
|
|
601
|
-
inputSchema: {
|
|
602
|
-
type: 'object',
|
|
603
|
-
properties: {
|
|
604
|
-
text: { type: 'string' },
|
|
605
|
-
types: { type: 'array', items: { type: 'string', enum: ['phone', 'email'] } },
|
|
606
|
-
defaultCountry: { type: 'string', default: 'US' },
|
|
607
|
-
},
|
|
608
|
-
required: ['text'],
|
|
609
|
-
},
|
|
610
|
-
},
|
|
611
485
|
// Data Validation Tools
|
|
612
|
-
{
|
|
613
|
-
name: 'schema_validator',
|
|
614
|
-
description: 'JSON schema के against data validate करता है',
|
|
615
|
-
inputSchema: {
|
|
616
|
-
type: 'object',
|
|
617
|
-
properties: {
|
|
618
|
-
data: { type: 'object' },
|
|
619
|
-
schema: { type: 'object' },
|
|
620
|
-
},
|
|
621
|
-
required: ['data', 'schema'],
|
|
622
|
-
},
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
name: 'required_fields_checker',
|
|
626
|
-
description: 'Missing required fields check करता है',
|
|
627
|
-
inputSchema: {
|
|
628
|
-
type: 'object',
|
|
629
|
-
properties: {
|
|
630
|
-
data: { type: 'object' },
|
|
631
|
-
requiredFields: { type: 'array', items: { type: 'string' } },
|
|
632
|
-
},
|
|
633
|
-
required: ['data', 'requiredFields'],
|
|
634
|
-
},
|
|
635
|
-
},
|
|
636
486
|
{
|
|
637
487
|
name: 'duplicate_remover',
|
|
638
488
|
description: 'Array से duplicate items remove करता है',
|
|
@@ -670,43 +520,6 @@ export const TOOLS = [
|
|
|
670
520
|
},
|
|
671
521
|
},
|
|
672
522
|
},
|
|
673
|
-
{
|
|
674
|
-
name: 'sentiment_analysis',
|
|
675
|
-
description: 'Analyze sentiment of page content or text',
|
|
676
|
-
inputSchema: {
|
|
677
|
-
type: 'object',
|
|
678
|
-
properties: {
|
|
679
|
-
url: { type: 'string' },
|
|
680
|
-
selector: { type: 'string' },
|
|
681
|
-
text: { type: 'string' },
|
|
682
|
-
},
|
|
683
|
-
},
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
name: 'summary_generator',
|
|
687
|
-
description: 'Generate summary of page content using TF-IDF',
|
|
688
|
-
inputSchema: {
|
|
689
|
-
type: 'object',
|
|
690
|
-
properties: {
|
|
691
|
-
url: { type: 'string' },
|
|
692
|
-
maxSentences: { type: 'number', default: 5 },
|
|
693
|
-
selector: { type: 'string' },
|
|
694
|
-
},
|
|
695
|
-
},
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
name: 'translation_support',
|
|
699
|
-
description: 'Detect language and provide translation info',
|
|
700
|
-
inputSchema: {
|
|
701
|
-
type: 'object',
|
|
702
|
-
properties: {
|
|
703
|
-
url: { type: 'string' },
|
|
704
|
-
selector: { type: 'string' },
|
|
705
|
-
text: { type: 'string' },
|
|
706
|
-
targetLanguage: { type: 'string', default: 'en' },
|
|
707
|
-
},
|
|
708
|
-
},
|
|
709
|
-
},
|
|
710
523
|
// Search & Filter Tools (5 tools)
|
|
711
524
|
{
|
|
712
525
|
name: 'keyword_search',
|
|
@@ -794,19 +607,6 @@ export const TOOLS = [
|
|
|
794
607
|
required: ['data'],
|
|
795
608
|
},
|
|
796
609
|
},
|
|
797
|
-
{
|
|
798
|
-
name: 'missing_data_handler',
|
|
799
|
-
description: 'Detect and handle missing data',
|
|
800
|
-
inputSchema: {
|
|
801
|
-
type: 'object',
|
|
802
|
-
properties: {
|
|
803
|
-
data: { type: 'array' },
|
|
804
|
-
requiredFields: { type: 'array', items: { type: 'string' } },
|
|
805
|
-
strategy: { type: 'string', enum: ['report', 'remove', 'fill', 'flag'], default: 'report' },
|
|
806
|
-
},
|
|
807
|
-
required: ['data'],
|
|
808
|
-
},
|
|
809
|
-
},
|
|
810
610
|
{
|
|
811
611
|
name: 'data_type_validator',
|
|
812
612
|
description: 'Validate data types against JSON schema',
|
|
@@ -917,22 +717,6 @@ export const TOOLS = [
|
|
|
917
717
|
required: ['selector', 'outputPath'],
|
|
918
718
|
},
|
|
919
719
|
},
|
|
920
|
-
{
|
|
921
|
-
name: 'pdf_generation',
|
|
922
|
-
description: 'Convert page to PDF',
|
|
923
|
-
inputSchema: {
|
|
924
|
-
type: 'object',
|
|
925
|
-
properties: {
|
|
926
|
-
url: { type: 'string' },
|
|
927
|
-
outputPath: { type: 'string' },
|
|
928
|
-
format: { type: 'string', default: 'A4' },
|
|
929
|
-
landscape: { type: 'boolean', default: false },
|
|
930
|
-
printBackground: { type: 'boolean', default: true },
|
|
931
|
-
margin: { type: 'object' },
|
|
932
|
-
},
|
|
933
|
-
required: ['outputPath'],
|
|
934
|
-
},
|
|
935
|
-
},
|
|
936
720
|
{
|
|
937
721
|
name: 'video_recording',
|
|
938
722
|
description: 'Record browser session',
|
|
@@ -1158,17 +942,6 @@ export const TOOLS = [
|
|
|
1158
942
|
},
|
|
1159
943
|
},
|
|
1160
944
|
},
|
|
1161
|
-
{
|
|
1162
|
-
name: 'session_persistence',
|
|
1163
|
-
description: 'Save and restore browser session',
|
|
1164
|
-
inputSchema: {
|
|
1165
|
-
type: 'object',
|
|
1166
|
-
properties: {
|
|
1167
|
-
action: { type: 'string', enum: ['save', 'restore'], default: 'save' },
|
|
1168
|
-
sessionData: { type: 'object' },
|
|
1169
|
-
},
|
|
1170
|
-
},
|
|
1171
|
-
},
|
|
1172
945
|
{
|
|
1173
946
|
name: 'form_auto_fill',
|
|
1174
947
|
description: 'Automatically fill form fields',
|
|
@@ -1193,32 +966,6 @@ export const TOOLS = [
|
|
|
1193
966
|
},
|
|
1194
967
|
},
|
|
1195
968
|
},
|
|
1196
|
-
{
|
|
1197
|
-
name: 'modal_popup_handler',
|
|
1198
|
-
description: 'Handle modal popups (detect, close)',
|
|
1199
|
-
inputSchema: {
|
|
1200
|
-
type: 'object',
|
|
1201
|
-
properties: {
|
|
1202
|
-
action: { type: 'string', enum: ['detect', 'close'], default: 'detect' },
|
|
1203
|
-
closeSelector: { type: 'string' },
|
|
1204
|
-
},
|
|
1205
|
-
},
|
|
1206
|
-
},
|
|
1207
|
-
{
|
|
1208
|
-
name: 'login_session_manager',
|
|
1209
|
-
description: 'Manage login sessions',
|
|
1210
|
-
inputSchema: {
|
|
1211
|
-
type: 'object',
|
|
1212
|
-
properties: {
|
|
1213
|
-
action: { type: 'string', enum: ['check', 'login', 'logout'], default: 'check' },
|
|
1214
|
-
username: { type: 'string' },
|
|
1215
|
-
password: { type: 'string' },
|
|
1216
|
-
usernameSelector: { type: 'string' },
|
|
1217
|
-
passwordSelector: { type: 'string' },
|
|
1218
|
-
submitSelector: { type: 'string' },
|
|
1219
|
-
},
|
|
1220
|
-
},
|
|
1221
|
-
},
|
|
1222
969
|
// Monitoring & Reporting
|
|
1223
970
|
{
|
|
1224
971
|
name: 'progress_tracker',
|
|
@@ -1235,31 +982,6 @@ export const TOOLS = [
|
|
|
1235
982
|
},
|
|
1236
983
|
},
|
|
1237
984
|
},
|
|
1238
|
-
{
|
|
1239
|
-
name: 'error_logger',
|
|
1240
|
-
description: 'Log and track errors',
|
|
1241
|
-
inputSchema: {
|
|
1242
|
-
type: 'object',
|
|
1243
|
-
properties: {
|
|
1244
|
-
action: { type: 'string', enum: ['log', 'get', 'clear'], default: 'log' },
|
|
1245
|
-
message: { type: 'string' },
|
|
1246
|
-
type: { type: 'string' },
|
|
1247
|
-
context: { type: 'object' },
|
|
1248
|
-
stackTrace: { type: 'string' },
|
|
1249
|
-
limit: { type: 'number', default: 10 },
|
|
1250
|
-
},
|
|
1251
|
-
},
|
|
1252
|
-
},
|
|
1253
|
-
{
|
|
1254
|
-
name: 'success_rate_reporter',
|
|
1255
|
-
description: 'Report success metrics',
|
|
1256
|
-
inputSchema: {
|
|
1257
|
-
type: 'object',
|
|
1258
|
-
properties: {
|
|
1259
|
-
timeRange: { type: 'string', enum: ['all', 'last_hour', 'last_day'], default: 'all' },
|
|
1260
|
-
},
|
|
1261
|
-
},
|
|
1262
|
-
},
|
|
1263
985
|
{
|
|
1264
986
|
name: 'data_quality_metrics',
|
|
1265
987
|
description: 'Report data quality metrics',
|
|
@@ -1270,22 +992,6 @@ export const TOOLS = [
|
|
|
1270
992
|
},
|
|
1271
993
|
},
|
|
1272
994
|
},
|
|
1273
|
-
{
|
|
1274
|
-
name: 'performance_monitor',
|
|
1275
|
-
description: 'Monitor browser and page performance',
|
|
1276
|
-
inputSchema: {
|
|
1277
|
-
type: 'object',
|
|
1278
|
-
properties: {},
|
|
1279
|
-
},
|
|
1280
|
-
},
|
|
1281
|
-
{
|
|
1282
|
-
name: 'monitoring_summary',
|
|
1283
|
-
description: 'Get overall monitoring summary',
|
|
1284
|
-
inputSchema: {
|
|
1285
|
-
type: 'object',
|
|
1286
|
-
properties: {},
|
|
1287
|
-
},
|
|
1288
|
-
},
|
|
1289
995
|
// Advanced Video & Media Download Tools
|
|
1290
996
|
{
|
|
1291
997
|
name: 'video_link_finder',
|
|
@@ -1474,7 +1180,6 @@ export const TOOL_NAMES = {
|
|
|
1474
1180
|
FIND_SELECTOR: 'find_selector',
|
|
1475
1181
|
SAVE_CONTENT_AS_MARKDOWN: 'save_content_as_markdown',
|
|
1476
1182
|
// Smart Data Extractors
|
|
1477
|
-
SCRAPE_TABLE: 'scrape_table',
|
|
1478
1183
|
EXTRACT_LIST: 'extract_list',
|
|
1479
1184
|
EXTRACT_JSON: 'extract_json',
|
|
1480
1185
|
SCRAPE_META_TAGS: 'scrape_meta_tags',
|
|
@@ -1484,32 +1189,17 @@ export const TOOL_NAMES = {
|
|
|
1484
1189
|
NESTED_DATA_EXTRACTION: 'nested_data_extraction',
|
|
1485
1190
|
ATTRIBUTE_HARVESTER: 'attribute_harvester',
|
|
1486
1191
|
// Content Type Specific
|
|
1487
|
-
IMAGE_SCRAPER: 'image_scraper',
|
|
1488
1192
|
LINK_HARVESTER: 'link_harvester',
|
|
1489
1193
|
MEDIA_EXTRACTOR: 'media_extractor',
|
|
1490
|
-
PDF_LINK_FINDER: 'pdf_link_finder',
|
|
1491
1194
|
// Pagination Tools
|
|
1492
|
-
AUTO_PAGINATION: 'auto_pagination',
|
|
1493
|
-
INFINITE_SCROLL: 'infinite_scroll',
|
|
1494
1195
|
MULTI_PAGE_SCRAPER: 'multi_page_scraper',
|
|
1495
|
-
SITEMAP_PARSER: 'sitemap_parser',
|
|
1496
1196
|
BREADCRUMB_NAVIGATOR: 'breadcrumb_navigator',
|
|
1497
1197
|
// Data Processing
|
|
1498
|
-
SMART_TEXT_CLEANER: 'smart_text_cleaner',
|
|
1499
1198
|
HTML_TO_TEXT: 'html_to_text',
|
|
1500
|
-
PRICE_PARSER: 'price_parser',
|
|
1501
|
-
DATE_NORMALIZER: 'date_normalizer',
|
|
1502
|
-
CONTACT_EXTRACTOR: 'contact_extractor',
|
|
1503
|
-
// Data Validation
|
|
1504
|
-
SCHEMA_VALIDATOR: 'schema_validator',
|
|
1505
|
-
REQUIRED_FIELDS_CHECKER: 'required_fields_checker',
|
|
1506
1199
|
DUPLICATE_REMOVER: 'duplicate_remover',
|
|
1507
1200
|
// AI-Powered Features
|
|
1508
1201
|
SMART_SELECTOR_GENERATOR: 'smart_selector_generator',
|
|
1509
1202
|
CONTENT_CLASSIFICATION: 'content_classification',
|
|
1510
|
-
SENTIMENT_ANALYSIS: 'sentiment_analysis',
|
|
1511
|
-
SUMMARY_GENERATOR: 'summary_generator',
|
|
1512
|
-
TRANSLATION_SUPPORT: 'translation_support',
|
|
1513
1203
|
// Search & Filter Tools
|
|
1514
1204
|
KEYWORD_SEARCH: 'keyword_search',
|
|
1515
1205
|
REGEX_PATTERN_MATCHER: 'regex_pattern_matcher',
|
|
@@ -1518,10 +1208,8 @@ export const TOOL_NAMES = {
|
|
|
1518
1208
|
VISUAL_ELEMENT_FINDER: 'visual_element_finder',
|
|
1519
1209
|
// Data Quality & Validation
|
|
1520
1210
|
DATA_DEDUPLICATION: 'data_deduplication',
|
|
1521
|
-
MISSING_DATA_HANDLER: 'missing_data_handler',
|
|
1522
1211
|
DATA_TYPE_VALIDATOR: 'data_type_validator',
|
|
1523
1212
|
OUTLIER_DETECTION: 'outlier_detection',
|
|
1524
|
-
CONSISTENCY_CHECKER: 'consistency_checker',
|
|
1525
1213
|
// Advanced Captcha Handling
|
|
1526
1214
|
OCR_ENGINE: 'ocr_engine',
|
|
1527
1215
|
AUDIO_CAPTCHA_SOLVER: 'audio_captcha_solver',
|
|
@@ -1529,7 +1217,6 @@ export const TOOL_NAMES = {
|
|
|
1529
1217
|
// Screenshot & Visual Tools
|
|
1530
1218
|
FULL_PAGE_SCREENSHOT: 'full_page_screenshot',
|
|
1531
1219
|
ELEMENT_SCREENSHOT: 'element_screenshot',
|
|
1532
|
-
PDF_GENERATION: 'pdf_generation',
|
|
1533
1220
|
VIDEO_RECORDING: 'video_recording',
|
|
1534
1221
|
VISUAL_COMPARISON: 'visual_comparison',
|
|
1535
1222
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brave-real-browser-mcp-server",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.9",
|
|
4
4
|
"description": "Universal AI IDE MCP Server - Auto-detects and supports all AI IDEs (Claude Desktop, Cursor, Windsurf, Cline, Zed, VSCode, Qoder AI, etc.) with Brave browser automation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,27 +39,18 @@
|
|
|
39
39
|
"ajv": "^8.12.0",
|
|
40
40
|
"axios": "^1.6.5",
|
|
41
41
|
"brave-real-browser": "^1.5.105",
|
|
42
|
-
"brave-real-launcher": "^1.2.
|
|
42
|
+
"brave-real-launcher": "^1.2.29",
|
|
43
43
|
"brave-real-puppeteer-core": "^24.33.0-patch.1",
|
|
44
|
-
"cheerio": "^1.0.0-rc.12",
|
|
45
|
-
"chrono-node": "^2.7.0",
|
|
46
44
|
"compromise": "^14.13.0",
|
|
47
45
|
"dotenv": "^17.2.3",
|
|
48
|
-
"franc": "^6.2.0",
|
|
49
|
-
"libphonenumber-js": "^1.10.51",
|
|
50
|
-
"natural": "^6.12.0",
|
|
51
46
|
"pixelmatch": "^5.3.0",
|
|
52
47
|
"pngjs": "^7.0.0",
|
|
53
48
|
"puppeteer-screen-recorder": "^3.0.6",
|
|
54
|
-
"sentiment": "^5.0.2",
|
|
55
49
|
"tesseract.js": "^5.0.5",
|
|
56
|
-
"turndown": "^7.2.2"
|
|
57
|
-
"xml2js": "^0.6.2"
|
|
50
|
+
"turndown": "^7.2.2"
|
|
58
51
|
},
|
|
59
52
|
"devDependencies": {
|
|
60
|
-
"@types/cheerio": "^0.22.35",
|
|
61
53
|
"@types/node": "latest",
|
|
62
|
-
"@types/xml2js": "^0.4.14",
|
|
63
54
|
"@vitest/coverage-v8": "^3.2.4",
|
|
64
55
|
"@vitest/ui": "^3.2.4",
|
|
65
56
|
"rimraf": "^6.1.2",
|