Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Nextdoor

FreeNot checked

An MCP server for Nextdoor that automates neighborhood feed browsing, marketplace search, event discovery, and local service finding.

GitHubEmbed

About

An MCP server for Nextdoor that automates neighborhood feed browsing, marketplace search, event discovery, and local service finding.

README

MCP (Model Context Protocol) server for Nextdoor — the local community platform. Automate neighborhood feed browsing, marketplace search, event discovery, and local service finding using Playwright with Browserbase.

Requirements

  • Node.js 18+
  • A Browserbase account with a CDP-enabled session URL
  • A Nextdoor account

Environment Variables

Variable Required Description
BROWSERBASE_CDP_URL Yes Browserbase CDP WebSocket URL for browser connection
NEXTDOOR_EMAIL Yes Your Nextdoor account email
NEXTDOOR_PASSWORD Yes Your Nextdoor account password

Installation

npm install @striderlabs/mcp-nextdoor

Or from tarball:

npm install ./striderlabs-mcp-nextdoor-1.0.0.tgz

MCP Configuration

Add to your MCP client config (e.g., Claude Desktop ~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "nextdoor": {
      "command": "node",
      "args": ["/path/to/node_modules/@striderlabs/mcp-nextdoor/dist/index.js"],
      "env": {
        "BROWSERBASE_CDP_URL": "wss://connect.browserbase.com?apiKey=YOUR_KEY&sessionId=YOUR_SESSION",
        "NEXTDOOR_EMAIL": "[email protected]",
        "NEXTDOOR_PASSWORD": "yourpassword"
      }
    }
  }
}

Tools

get_feed

Get posts from your Nextdoor neighborhood feed.

Parameters:

  • limit (number, 1-50, default: 10) — Number of posts to retrieve
  • category (string, default: "all") — Filter by: all, crime_safety, lost_found, free_stuff, recommendations, general

Example:

{ "limit": 5, "category": "crime_safety" }

create_post

Draft a new post in your Nextdoor neighborhood. The post is loaded into the composer but not auto-submitted (safety measure).

Parameters:

  • title (string, required) — Post title
  • body (string, required) — Post body content
  • category (string, default: "general") — Category: general, crime_safety, lost_found, free_stuff, recommendations

Example:

{ "title": "Lost black cat - Maple St area", "body": "Missing since Tuesday evening...", "category": "lost_found" }

search_marketplace

Search Nextdoor's For Sale & Free marketplace.

Parameters:

  • query (string, required) — Search terms
  • max_price (number, optional) — Maximum price
  • min_price (number, optional) — Minimum price
  • limit (number, 1-50, default: 10) — Number of listings

Example:

{ "query": "bicycle", "max_price": 200, "limit": 5 }

get_events

Get upcoming local events from Nextdoor.

Parameters:

  • limit (number, 1-50, default: 10) — Number of events
  • days_ahead (number, 1-90, default: 30) — Days ahead to look

Example:

{ "limit": 10, "days_ahead": 14 }

get_recommendations

Get local business recommendations from neighbors.

Parameters:

  • category (string, default: "all") — Business type (e.g., restaurant, plumber, dentist)
  • limit (number, 1-50, default: 10) — Number of recommendations

Example:

{ "category": "restaurant", "limit": 5 }

find_services

Search for local service providers.

Parameters:

  • service_type (string, required) — Service to find (e.g., plumber, electrician, babysitter)
  • limit (number, 1-50, default: 10) — Number of providers

Example:

{ "service_type": "house cleaner", "limit": 5 }

How It Works

The server uses Playwright to connect to a Browserbase-managed Chromium browser via CDP (Chrome DevTools Protocol). It navigates to Nextdoor, authenticates with your credentials, and scrapes or interacts with the page to fulfill tool requests.

MCP Client → mcp-nextdoor server → Playwright CDP → Browserbase → Chromium → nextdoor.com

Notes

  • Authentication: The server logs in using email/password on first use. Sessions are reused across tool calls.
  • Post creation: create_post drafts content into the composer but does not submit automatically to prevent accidental posts.
  • Selectors: Nextdoor's frontend changes periodically. If extraction returns empty results, the page structure may have changed.
  • Rate limiting: Be respectful of Nextdoor's terms of service and avoid excessive automated requests.

License

MIT — Strider Labs

from github.com/markswendsen-code/mcp-nextdoor

Installing Nextdoor

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/markswendsen-code/mcp-nextdoor

FAQ

Is Nextdoor MCP free?

Yes, Nextdoor MCP is free — one-click install via Unyly at no cost.

Does Nextdoor need an API key?

No, Nextdoor runs without API keys or environment variables.

Is Nextdoor hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Nextdoor in Claude Desktop, Claude Code or Cursor?

Open Nextdoor on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Nextdoor with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs