DEV Community

Cover image for 2025: How to Use AI to Never Miss Anything You're Interested in
M.T.Arden
M.T.Arden

Posted on

2025: How to Use AI to Never Miss Anything You're Interested in

The hacker's black magic trick of saving money and effort by merging AI with the MCP server. This is a guideline on how to quickly summarize the job list on Indeed. This is for educational purposes; always respect robots.txt and site policies to avoid bans.
You can also condense Stack Overflow and GitHub threads or distill Reddit and Twitter headlines.

Before completing this work, you need:

Claude Setup Process:

  1. Open the Claude desktop app and log in. The main interface looks like the image below. If there's no sidebar on the left, click the Toggle sidebar icon in the upper left to open it: claude1
  2. Click on your avatar in the bottom left, go to Settings, scroll down, find Developer, and click to enter the following page: claude2
  3. Copy the following standard config (using Playwright MCP server here) and add it to the claude_desktop_config.json file in the Edit Config section:

    {
     "mcpServers": {
       "playwright": {
         "command": "npx",
         "args": [
           "@playwright/mcp@latest"
         ]
       }
     }
    }
    
  4. Restart Claude. The same page should now display (if you encounter a connection error, clear the background processes and restart):

    claude3

  5. Click on the button 'Search and Tools':

    claude4

    The interface that appears allows you to start inputting your own prompts:

    claude5

  6. Example result:

    claude6result

From my personal experience, Claude tends to encounter more errors like connection issues and takes longer to process than Cursor.

Cursor Setup Process:

  1. Open Cursor, find the settings icon in the upper right corner , cursor1 and enter the settings page: cursor2
  2. Click New MCP Server, add the server configuration, and after adding, it should look like the result shown in the image above:

    {
     "mcpServers": {
       "playwright": {
         "command": "npx",
         "args": [
           "@playwright/mcp@latest"
         ]
       }
     }
    }
    
  3. Click on the Custom Layout icon (in the red box) to bring up the chat interface:
    cursor3

  4. Input your prompt and start using it. Example result:
    cursor4result

Recommended Prompts:

1. Go to [website link] # This website should ideally be one you've authenticated with Cloudflare, etc., and already filtered, to avoid getting stuck.
2. Find out [job title] that was posted [timespan] in [job location]
3. Return me a deduplicated list of the jobs in this format: company - job - posted time - link
Enter fullscreen mode Exit fullscreen mode

Top comments (0)