npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

landbridge-mcp

v1.4.0

Published

MCP server for LandBridge — manage land leads, campaigns, properties, and analytics via Claude or any MCP client

Downloads

95

Readme

landbridge-mcp

MCP server for LandBridge — manage land leads, campaigns, properties, and analytics via Claude or any MCP client.

Install

npm install -g landbridge-mcp

Authentication

On first run the server launches a device auth flow — it opens your browser so you can log in with your LandBridge account. Credentials are cached at ~/.landbridge/credentials.json.

You can also set an API key directly:

export MCP_API_KEY="your-api-key"

Usage

Stdio (default — for Claude Desktop, Claude Code, etc.)

Add to your MCP client config:

{
  "mcpServers": {
    "landbridge": {
      "command": "npx",
      "args": ["-y", "landbridge-mcp"]
    }
  }
}

Or run directly:

landbridge-mcp

HTTP (for web clients and remote access)

landbridge-mcp --http

Or via environment variable:

MCP_TRANSPORT=http landbridge-mcp

The server listens on http://localhost:3100/mcp (Streamable HTTP transport with SSE support).

Endpoints:

| Method | Path | Description | |--------|------|-------------| | POST | /mcp | Send JSON-RPC messages (initialize, tool calls) | | GET | /mcp | Open SSE stream for server notifications | | DELETE | /mcp | Close a session | | GET | /health | Health check |

Sessions are managed via the mcp-session-id header.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | MCP_API_KEY | — | API key (skips device auth flow) | | MCP_API_URL | https://land-tools-api-production.up.railway.app | API base URL | | MCP_WEB_URL | https://www.landbridge.app | Web app URL (for device auth) | | MCP_TRANSPORT | stdio | Transport mode: stdio or http | | MCP_PORT | 3100 | HTTP server port (HTTP mode only) |

Available Tools

Read

  • list_leads — List leads with property and campaign info
  • get_lead — Get detailed lead info
  • search_leads — Search by name, address, APN, or phone
  • list_campaigns — List campaigns with metrics
  • get_campaign — Get detailed campaign info
  • list_properties — List properties, filter by campaign
  • search_properties — Search by address, APN, or owner
  • get_kpis — KPI dashboard (current month, last month, YTD, lifetime)
  • list_tasks — List tasks

Analytics

  • pipeline_velocity — Stage duration, bottlenecks, fall-off rates
  • campaign_roi — Marketing spend vs revenue
  • deal_economics — Purchase price, selling price, profit, margins
  • weighted_pipeline — Weighted pipeline value by stage probability
  • stale_leads — Leads needing follow-up

Write

  • update_lead — Update stage, contact info, pricing
  • create_lead — Create lead from property ref ID
  • delete_lead — Soft-delete a lead
  • add_contact_note — Add a note to a lead
  • upload_lead_image — Upload screenshot/image to a lead
  • list_lead_images / delete_lead_image — Manage lead images
  • edit_campaign / delete_campaign — Manage campaigns

Development

npm run dev          # stdio mode
npm run dev:http     # HTTP mode
npm run build        # compile TypeScript

License

MIT