EveryDev.ai
Subscribe
Home
Tools

3,891+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai Β© 2026
    1. Home
    2. Tools
    3. Linkedin Posts Job Radar
    Linkedin Posts Job Radar icon

    Linkedin Posts Job Radar

    MCP Servers

    An MCP server that scrapes LinkedIn job posts, filters out noise, and provides a local dashboard to triage real openings by market, pay, and verdict.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the ISC License. Self-hosted on your own machine.

    Engagement

    Available On

    CLI
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    MCP ServersWorkflow AutomationProductivity Extensions

    Alternatives

    YepCodenotifkitZapier MCP
    Developer
    MaryemeBayMaryemeBay builds open-source developer tools focused on AI-…

    Listed Sep 2026

    About Linkedin Posts Job Radar

    Linkedin Posts Job Radar is an open-source MCP server built by Maryeme Bayri that connects your AI assistant to LinkedIn, harvests job posts, and runs them through a multi-gate screening pipeline before surfacing them in a local React dashboard. Everything runs on your machine β€” no external accounts, no cloud servers, and no data leaving your laptop.

    What It Is

    Linkedin Posts Job Radar solves a specific problem: searching LinkedIn for a role like "Senior Data Scientist" returns a mix of real openings, "open to work" announcements, course ads, newsletter roundups, and staffing-agency reposts β€” often across countries you can't work in. This tool intercepts that noise at ingestion time, so you triage a short, high-signal list rather than hundreds of raw results. It is implemented as a Model Context Protocol (MCP) server written in TypeScript, using Playwright for browser automation, SQLite for local storage, and a React/Vite/Tailwind dashboard served on localhost.

    How the Screening Pipeline Works

    Three gates are applied to every post as it arrives:

    • Relevance gate β€” rejects commentary, roundups, and course ads while keeping posts with hiring intent, even when they never use the word "hiring" (e.g., Lead Data Analyst opportunity at HelloFresh in London passes).
    • Author gate β€” catches "open to work" posts and staffing-agency reposts via wording signals (our client, on behalf of, C2C, Outside IR35) and recruiter titles, while preserving in-house corporate recruiters.
    • Market gate β€” accepts posts that name any country in your configured allowlist; posts with no detectable location are kept rather than discarded.

    Location detection covers roughly 105 countries by name and major city, in English, French, German, Spanish, and Portuguese. An explicit location line (e.g., πŸ“ Location: London, UK) wins over any country mentioned later in the body. Pay detection classifies each currency figure by pay period and rejects amounts that don't make sense for that period, distinguishing a real salary from a welcome bonus or meal voucher.

    Setup Path

    The tool requires Node.js 18+ and an MCP client such as Claude Code, Claude Desktop, or Cursor. Chromium is downloaded automatically on first use. The quickest install requires no cloning β€” a single npx command or a JSON config block points the MCP client at the GitHub repo and npm handles the rest. Cloning is only needed if you want to edit the market allowlist (src/intake/market-policy.ts) or tune the screening rules in src/intake/relevance.ts.

    An .mcpb bundle can also be produced via npm run bundle for clients that support MCP bundle installs without requiring Node tooling on the target machine.

    The Dashboard

    The local dashboard runs at localhost:7391 and lets you rate each post as Ok, Maybe, or Not interested. Visual cues β€” colored accent rails, dimmed "Not interested" cards β€” keep long lists readable. Applied status is tracked separately from the triage verdict. Every card shows the inferred country and any pay figure extracted from the post text. A table view lets you edit and sort every field. Dark mode follows the OS by default with a manual toggle.

    Filters can be changed from the AI conversation itself via the dashboard_filters MCP tool, so you can ask your assistant to show only Ok-rated posts that quote a salary without touching the UI.

    Architecture and Data Storage

    The MCP server exposes five tools to the assistant: linkedin_session, harvest_posts, vacancies, dashboard_filters, and open_dashboard/close_dashboard. The SQLite database and LinkedIn session credentials are stored under ~/.linkedin-mcp/ and are never committed or transmitted. The store uses sql.js (in-memory SQLite) with a file-fingerprint reload mechanism to prevent data loss when the MCP server and dashboard process run concurrently.

    The project is derived from LinkedIn-Posts-Hunter-MCP-Server by Kevin Weitgenant (ISC licence) and substantially reorganized around the intake pipeline, with new screening logic, country and pay inference, a triage verdict system, and a rebuilt dashboard.

    Current Status

    The repository was created and last pushed on 2026-08-21, making it a very recent release. It is licensed under the ISC License and is free to use, modify, and distribute. The project has one open issue and is actively maintained by its author.

    Linkedin Posts Job Radar - 1

    Community Discussions

    Be the first to start a conversation about Linkedin Posts Job Radar

    Share your experience with Linkedin Posts Job Radar, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the ISC License. Self-hosted on your own machine.

    • LinkedIn post scraping via Playwright
    • Three-gate screening pipeline
    • Local React dashboard
    • Pay and location detection
    • MCP server with 5 tools

    Capabilities

    Key Features

    • LinkedIn post scraping via Playwright browser automation
    • Three-gate screening pipeline: relevance, author, and market filters
    • Local React dashboard at localhost:7391 for triage (Ok / Maybe / Not interested)
    • Pay detection with currency, amount, and pay-period classification
    • Location detection across ~105 countries in 5 languages
    • Applied status tracking separate from triage verdict
    • Dark mode with OS-default toggle
    • Table view for editing and sorting all fields
    • Dashboard filters controllable from AI conversation
    • MCP tools: linkedin_session, harvest_posts, vacancies, dashboard_filters, open_dashboard/close_dashboard
    • Local-only storage β€” no data leaves the machine
    • SQLite database with cross-process reload safety
    • MCP bundle (.mcpb) output for clients without Node tooling
    • Configurable market allowlist and screening rules via source edit

    Integrations

    Claude Code
    Claude Desktop
    Cursor
    LinkedIn
    Playwright
    SQLite
    Node.js
    React
    Vite
    Tailwind CSS
    Express
    TypeScript
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Linkedin Posts Job Radar and help others make informed decisions.

    Developer

    MaryemeBay

    MaryemeBay builds open-source developer tools focused on AI-assisted workflows. The linkedin-posts-job-radar project extends an MCP server pattern to solve high-noise job search on LinkedIn, adding a full screening pipeline, local dashboard, and pay/location inference. The project is derived from and credits Kevin Weitgenant's LinkedIn-Posts-Hunter-MCP-Server.

    Read more about MaryemeBay
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    YepCode icon

    YepCode

    Developer-first platform to build, run, and scale AI-powered integrations and automations using JavaScript or Python code.

    notifkit icon

    notifkit

    Self-hosted notification infrastructure that handles email, SMS, push, and webhooks with a single notify() call, including preferences, quiet hours, retries, fallback, scheduling, and workflows.

    Zapier MCP icon

    Zapier MCP

    Zapier’s Model Context Protocol server exposes Zaps and app actions as MCP tools for AI agents like Claude, Cursor, and Windsurf.

    Browse all tools

    Related Topics

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    241 tools

    Workflow Automation

    Agents designed to automate complex business and development workflows.

    326 tools

    Productivity Extensions

    Extensions and plugins that improve workflow and productivity.

    97 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions