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

property-listing-generator-mcp

v1.0.0

Published

MCP server for generating property listings with AI-powered descriptions and PDF brochures

Readme

Property Listing Generator MCP Server

A Model Context Protocol (MCP) server that helps real estate professionals generate compelling property listings with AI-enhanced descriptions, local information from Google Maps, and professional PDF brochures.

Features

  • 🏠 AI-Enhanced Property Descriptions: Generate appealing, professional property descriptions
  • 📍 Local Information Integration: Automatically fetch nearby schools, transport, and amenities using Google Maps API
  • 📄 PDF Brochure Generation: Create beautiful PDF brochures with property photos and information
  • 🖼️ Image Support: Include up to 10 property images in your listings
  • 🔧 Easy Integration: Works seamlessly with Claude Desktop and other MCP clients

Installation

Via NPX (Recommended)

The easiest way to use this MCP server is via npx. Add the following to your Claude Desktop configuration file:

MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "property-listing-generator": {
      "command": "npx",
      "args": ["-y", "property-listing-generator-mcp"],
      "env": {
        "GOOGLE_MAPS_API_KEY": "your-google-maps-api-key-here"
      }
    }
  }
}

Manual Installation

  1. Clone this repository:
git clone <repository-url>
cd property-ad-generator
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "property-listing-generator": {
      "command": "node",
      "args": ["/absolute/path/to/property-ad-generator/build/index.js"],
      "env": {
        "GOOGLE_MAPS_API_KEY": "your-google-maps-api-key-here"
      }
    }
  }
}

Google Maps API Key

This MCP server requires a Google Maps API key to fetch local information.

Getting a Google Maps API Key:

  1. Go to the Google Cloud Console
  2. Create a new project or select an existing one
  3. Enable the following APIs:
    • Geocoding API
    • Places API
  4. Create credentials (API Key)
  5. Add the API key to your Claude Desktop configuration as shown above

Note: The Places API has usage costs. Review Google Maps Platform pricing to understand potential charges.

Usage

Once configured, you can use the following tools in Claude Desktop:

1. Generate Property Listing

Generate a complete property listing with description, local information, and PDF brochure:

Please generate a property listing for:
- Address: 123 Main St, San Francisco, CA 94102
- Property Type: House
- Bedrooms: 3
- Bathrooms: 2
- Square Feet: 1800
- Price: $1,200,000
- Features: Updated Kitchen, Hardwood Floors, Private Garden, Garage

2. Get Local Information

Fetch local schools, transport, and amenities for a specific address:

Get local information for 123 Main St, San Francisco, CA 94102

Tools

generate_property_listing

Generates a comprehensive property listing including:

  • AI-enhanced description
  • Local information (schools, transport, amenities)
  • PDF brochure with photos

Parameters:

  • address (required): Full property address
  • propertyType (required): Type of property (House, Condo, Apartment, etc.)
  • bedrooms (optional): Number of bedrooms
  • bathrooms (optional): Number of bathrooms
  • squareFeet (optional): Total square footage
  • price (optional): Listing price
  • features (optional): Array of property features
  • images (optional): Array of up to 10 image file paths
  • outputPath (optional): PDF output path (default: './property-brochure.pdf')

get_local_information

Fetches local information for a given address.

Parameters:

  • address (required): Full property address
  • radius (optional): Search radius in meters (default: 1609 = 1 mile)

Image Requirements

  • Supported formats: JPEG, PNG
  • Maximum 10 images per listing
  • Images must be accessible local file paths
  • Images will be automatically resized to fit the PDF layout

Output

The server generates:

  1. Property Description: CRM-ready text that can be copied directly
  2. PDF Brochure: Professional brochure with:
    • Property title and address
    • Price and key details
    • Property photos (up to 10)
    • Full description
    • Local highlights (schools, transport, amenities)

Development

# Install dependencies
npm install

# Build the project
npm run build

# Watch mode for development
npm run dev

Example Configuration Files

See examples/ directory for sample Claude Desktop configurations and example usage.

Troubleshooting

"Google Maps API key not configured" error

Make sure you've added the GOOGLE_MAPS_API_KEY environment variable to your Claude Desktop configuration file.

Images not appearing in PDF

  • Verify that image paths are correct and accessible
  • Ensure image files are in JPEG or PNG format
  • Check that file paths are absolute or relative to where Claude Desktop runs

PDF not generated

  • Check that you have write permissions in the output directory
  • Verify the output path is valid
  • Check the Claude Desktop logs for detailed error messages

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.