Skip to content

brightdata/brightdata-cursor-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

4 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Cursor plugin template

Build and publish Cursor Marketplace plugins from a single repo.

Three plugins are included:

  • starter-simple: rules and skills only
  • starter-advanced: rules, skills, agents, commands, hooks, MCP, and scripts
  • bright-data: web search, scraping, browser automation, and structured data powered by Bright Data

Bright Data plugin

The plugins/bright-data/ plugin integrates the Bright Data MCP server into Cursor. It covers four products:

Product Skill Command
SERP API (Google, Bing, etc.) bd-search /bd-search
Web Unlocker bd-scrape, bd-batch-scrape /bd-scrape
Scraping Browser bd-browser /bd-browser
Web Scraper / Dataset API bd-structured-data /bd-data
Code generation (Python & Node.js) bd-code /bd-code

Skills β€” what the AI uses to query live data or generate code:

  • bd-search β€” live web search via SERP API
  • bd-scrape β€” single URL extraction via Web Unlocker
  • bd-batch-scrape β€” parallel multi-URL extraction
  • bd-browser β€” interactive browser automation via Scraping Browser (CDP)
  • bd-structured-data β€” structured platform data (Amazon, LinkedIn, Instagram, etc.)
  • bd-code β€” generate complete Python or Node.js integration code for any Bright Data product

Commands β€” slash commands that invoke the skills:

  • /bd-setup β€” configure and verify the MCP connection
  • /bd-search <query> β€” search the web
  • /bd-scrape <url> β€” extract a URL
  • /bd-browser <url> β€” open and interact with a page
  • /bd-data <platform> <url> β€” pull structured platform data
  • /bd-status β€” check MCP connection status
  • /bd-code <product> <language> [use-case] β€” generate integration code

Quick setup

  1. Get your API token from brightdata.com/cp/setting/users.
  2. Add the MCP server to your Cursor mcp.json:
{
  "mcpServers": {
    "Bright Data": {
      "command": "npx",
      "args": ["@brightdata/mcp"],
      "env": {
        "API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}
  1. Run /bd-setup in Cursor to verify the connection.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Generated from cursor/plugin-template