brave-real-browser-mcp-server 2.14.10 → 2.14.11

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 CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  **Brave Real Browser MCP Server** एक powerful automation tool है जो:
24
24
 
25
- - ✅ **15+ AI IDEs में काम करता है** (Claude, Cursor, Windsurf, Cline, Zed, VSCode, Qoder AI, etc.)
25
+ - ✅ **20+ AI IDEs में काम करता है** (Antigravity, Warp AI, Zed, Cursor, Claude, Windsurf, Cline, Qoder AI, etc.)
26
26
  - ✅ **108+ Automation Tools** - Browser control, scraping, CAPTCHA solving, video extraction
27
27
  - ✅ **MCP Protocol (STDIO)** - Fast and secure local communication
28
28
  - ✅ **Auto-Detection** - Automatically detects your IDE
@@ -42,6 +42,9 @@
42
42
  | **Claude Desktop** | 2 min | MCP | Add config → Restart |
43
43
  | **Cursor AI** | 2 min | MCP | Add config → Restart |
44
44
  | **Windsurf** | 2 min | MCP | Add config → Restart |
45
+ | **Antigravity IDE** | 1 min | MCP | Auto-Detect |
46
+ | **Warp AI** | 2 min | MCP | Add config |
47
+ | **Zed AI** | 2 min | MCP | Add config |
45
48
  | **Qoder AI** | 3 min | MCP (STDIO) | Add config → Restart |
46
49
 
47
50
  **Quick Commands:**
@@ -333,7 +333,7 @@ export const TOOLS = [
333
333
  // Smart Data Extractors
334
334
  {
335
335
  name: 'extract_list',
336
- description: 'Bullet lists और numbered lists से data extract करता है',
336
+ description: 'Extract data from bullet lists and numbered lists',
337
337
  inputSchema: {
338
338
  type: 'object',
339
339
  properties: {
@@ -345,7 +345,7 @@ export const TOOLS = [
345
345
  },
346
346
  {
347
347
  name: 'extract_json',
348
- description: 'Page में embedded JSON/API data extract करता है',
348
+ description: 'Extract embedded JSON/API data from the page',
349
349
  inputSchema: {
350
350
  type: 'object',
351
351
  properties: {
@@ -357,7 +357,7 @@ export const TOOLS = [
357
357
  },
358
358
  {
359
359
  name: 'scrape_meta_tags',
360
- description: 'SEO meta tags और Open Graph data extract करता है',
360
+ description: 'Extract SEO meta tags and Open Graph data',
361
361
  inputSchema: {
362
362
  type: 'object',
363
363
  properties: {
@@ -369,7 +369,7 @@ export const TOOLS = [
369
369
  },
370
370
  {
371
371
  name: 'extract_schema',
372
- description: 'Schema.org structured data (JSON-LD, Microdata) extract करता है',
372
+ description: 'Extract Schema.org structured data (JSON-LD, Microdata)',
373
373
  inputSchema: {
374
374
  type: 'object',
375
375
  properties: {
@@ -381,7 +381,7 @@ export const TOOLS = [
381
381
  // Multi-Element Extractors
382
382
  {
383
383
  name: 'batch_element_scraper',
384
- description: 'Multiple similar elements को batch में scrape करता है',
384
+ description: 'Scrape multiple similar elements in a batch',
385
385
  inputSchema: {
386
386
  type: 'object',
387
387
  properties: {
@@ -395,7 +395,7 @@ export const TOOLS = [
395
395
  },
396
396
  {
397
397
  name: 'nested_data_extraction',
398
- description: 'Parent-child relationships maintain करते हुए data extract करता है',
398
+ description: 'Extract data maintaining parent-child relationships',
399
399
  inputSchema: {
400
400
  type: 'object',
401
401
  properties: {
@@ -408,7 +408,7 @@ export const TOOLS = [
408
408
  },
409
409
  {
410
410
  name: 'attribute_harvester',
411
- description: 'Elements के attributes (href, src, data-*) collect करता है',
411
+ description: 'Collect attributes (href, src, data-*) from elements',
412
412
  inputSchema: {
413
413
  type: 'object',
414
414
  properties: {
@@ -422,7 +422,7 @@ export const TOOLS = [
422
422
  // Content Type Specific Extractors
423
423
  {
424
424
  name: 'link_harvester',
425
- description: 'Internal/external links classification के साथ collect करता है',
425
+ description: 'Collect internal/external links with classification',
426
426
  inputSchema: {
427
427
  type: 'object',
428
428
  properties: {
@@ -434,7 +434,7 @@ export const TOOLS = [
434
434
  },
435
435
  {
436
436
  name: 'media_extractor',
437
- description: 'Videos, audio, iframes का URLs और metadata extract करता है',
437
+ description: 'Extract URLs and metadata for videos, audio, and iframes',
438
438
  inputSchema: {
439
439
  type: 'object',
440
440
  properties: {
@@ -446,7 +446,7 @@ export const TOOLS = [
446
446
  // Pagination Tools
447
447
  {
448
448
  name: 'multi_page_scraper',
449
- description: 'Multiple pages से data collect और merge करता है',
449
+ description: 'Collect and merge data from multiple pages',
450
450
  inputSchema: {
451
451
  type: 'object',
452
452
  properties: {
@@ -459,7 +459,7 @@ export const TOOLS = [
459
459
  },
460
460
  {
461
461
  name: 'breadcrumb_navigator',
462
- description: 'Site structure follow करके navigation path extract करता है',
462
+ description: 'Extract navigation path by following site structure',
463
463
  inputSchema: {
464
464
  type: 'object',
465
465
  properties: {
@@ -471,7 +471,7 @@ export const TOOLS = [
471
471
  // Data Processing Tools
472
472
  {
473
473
  name: 'html_to_text',
474
- description: 'HTML को clean text में convert करता है',
474
+ description: 'Convert HTML content to clean text',
475
475
  inputSchema: {
476
476
  type: 'object',
477
477
  properties: {
@@ -485,7 +485,7 @@ export const TOOLS = [
485
485
  // Data Validation Tools
486
486
  {
487
487
  name: 'duplicate_remover',
488
- description: 'Array से duplicate items remove करता है',
488
+ description: 'Remove duplicate items from an array',
489
489
  inputSchema: {
490
490
  type: 'object',
491
491
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brave-real-browser-mcp-server",
3
- "version": "2.14.10",
3
+ "version": "2.14.11",
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",