Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Batchdata Mcp Real Estate

    Model Context Protocol (MCP) server for BatchData.io property and address APIs - Real estate data integration for Claude and other AI assistants

    21 stars
    TypeScript
    Updated Oct 6, 2025

    Table of Contents

    • Features
    • Address Operations
    • Property Operations
    • Installation
    • Installing via Smithery
    • Manual Installation
    • Quick Setup
    • Docker Support
    • Quick Start with Docker
    • Docker Management Commands
    • Manual Docker Usage
    • Docker Features
    • Development Commands
    • Configuration for Claude Desktop
    • macOS
    • Windows
    • Docker Configuration for Claude Desktop
    • Tools Available
    • Address Tools
    • Property Tools
    • Example Usage
    • Count Properties in Phoenix
    • Find Comparable Properties
    • Verify an Address
    • API Rate Limits
    • Environment Variables
    • Error Handling
    • Dependencies
    • Contributing
    • License
    • Support

    Table of Contents

    • Features
    • Address Operations
    • Property Operations
    • Installation
    • Installing via Smithery
    • Manual Installation
    • Quick Setup
    • Docker Support
    • Quick Start with Docker
    • Docker Management Commands
    • Manual Docker Usage
    • Docker Features
    • Development Commands
    • Configuration for Claude Desktop
    • macOS
    • Windows
    • Docker Configuration for Claude Desktop
    • Tools Available
    • Address Tools
    • Property Tools
    • Example Usage
    • Count Properties in Phoenix
    • Find Comparable Properties
    • Verify an Address
    • API Rate Limits
    • Environment Variables
    • Error Handling
    • Dependencies
    • Contributing
    • License
    • Support

    Documentation

    MseeP.ai Security Assessment Badge

    BatchData - Real Estate Data - MCP Server

    smithery badge

    A Model Context Protocol (MCP) server that integrates with BatchData.io's comprehensive property and address APIs. This server provides access to property data, address verification, skip tracing, geocoding, and advanced property search capabilities.

    Features

    Address Operations

    • verify-address: Validate and standardize addresses using USPS verification
    • autocomplete-address: Get intelligent address suggestions as you type
    • geocode-address: Convert addresses to latitude/longitude coordinates
    • reverse-geocode: Convert coordinates back to readable addresses

    Property Operations

    • lookup-property: Get detailed property information by address or APN (Assessor Parcel Number)
    • search-properties: Advanced property search with comprehensive filters
    • search-properties-by-boundary: Geographic boundary searches using bounding boxes or radius
    • count-properties: Get property counts matching specific criteria (lightweight operation)

    Installation

    Installing via Smithery

    To install batchdata-mcp-real-estate for Claude Desktop automatically via Smithery:

    bash
    npx -y @smithery/cli install @zellerhaus/batchdata-mcp-real-estate --client claude

    Manual Installation

    1. Clone or download this MCP server to your local machine

    2. Install dependencies:

    bash
    cd batchdata-mcp-real-estate
       npm install

    3. Configure your API key:

    • Get your API key from BatchData Settings or register here.
    • Create or update the .env file in the project root:
    env
    BATCHDATA_API_KEY=your_actual_api_key_here

    4. Build the TypeScript project:

    bash
    npm run build

    5. Test the server:

    bash
    npm start

    Quick Setup

    Use the automated setup scripts:

    Linux/macOS:

    bash
    chmod +x setup.sh && ./setup.sh

    Windows:

    cmd
    setup.bat

    Docker Support

    Quick Start with Docker

    1. Build and test the Docker container:

    bash
    chmod +x docker-manage.sh
       ./docker-manage.sh test

    2. Run with Docker Compose:

    bash
    ./docker-manage.sh run

    3. View logs:

    bash
    ./docker-manage.sh logs

    Docker Management Commands

    The docker-manage.sh script provides convenient commands:

    • build: Build the Docker image
    • run: Start with docker-compose
    • stop: Stop the service
    • logs: View server logs
    • test: Build and test the server
    • clean: Clean up Docker resources
    • run-direct: Run directly with Docker (for testing)

    Manual Docker Usage

    Build the image:

    bash
    docker build -t batchdata-mcp-server:latest .

    Run with environment file:

    bash
    docker run --rm --env-file .env batchdata-mcp-server:latest

    Run with Docker Compose:

    bash
    docker-compose up -d

    Docker Features

    • Multi-stage build for optimized image size
    • Non-root user for enhanced security
    • Health checks for monitoring
    • Resource limits and logging configuration
    • Production-ready with proper signal handling

    Development Commands

    • Build: npm run build - Compiles TypeScript to JavaScript
    • Start: npm start - Runs the compiled JavaScript server
    • Dev: npm run dev - Builds and runs in one command
    • Clean: npm run clean - Removes compiled JavaScript files

    Configuration for Claude Desktop

    To use this MCP server with Claude Desktop, add the following to your Claude configuration file:

    macOS

    Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

    json
    {
      "mcpServers": {
        "batchdata": {
          "command": "node",
          "args": ["/path/to/batchdata-mcp-real-estate/batchdata_mcp_server.js"],
          "env": {
            "BATCHDATA_API_KEY": "your_api_key_here"
          }
        }
      }
    }

    Windows

    Edit %APPDATA%\Claude\claude_desktop_config.json:

    json
    {
      "mcpServers": {
        "batchdata": {
          "command": "node",
          "args": ["C:\\path\\to\\batchdata-mcp-real-estate\\batchdata_mcp_server.js"],
          "env": {
            "BATCHDATA_API_KEY": "your_api_key_here"
          }
        }
      }
    }

    Docker Configuration for Claude Desktop

    If running via Docker, you can configure Claude Desktop to use the containerized server:

    json
    {
      "mcpServers": {
        "batchdata": {
          "command": "docker",
          "args": ["exec", "-i", "batchdata-mcp-server", "node", "batchdata_mcp_server.js"],
          "env": {
            "BATCHDATA_API_KEY": "your_api_key_here"
          }
        }
      }
    }

    Tools Available

    Address Tools

    • verify-address - USPS address verification and standardization
    • autocomplete-address - Smart address suggestions
    • geocode-address - Convert address to coordinates
    • reverse-geocode - Convert coordinates to address

    Property Tools

    • lookup-property - Detailed property data by address/APN
    • search-properties - Advanced filtered property search
    • search-properties-by-boundary - Geographic area searches
    • count-properties - Property count queries

    Example Usage

    Count Properties in Phoenix

    code
    I need to count single-family homes in Phoenix, AZ between $250,000 and $600,000

    Find Comparable Properties

    code
    Find properties similar to 2800 N 24th St, Phoenix, AZ 85008 within 1 mile

    Verify an Address

    code
    Verify this address: 2800 N 24th St, Phoenix, Arizona 85008

    API Rate Limits

    BatchData.io rate limits per endpoint:

    • Address Verification: 5,000 max (1,000 recommended per batch)
    • Address Geocoding: 90 max (75 recommended per batch)
    • Property Search: 1,000 max requests
    • Property Lookup: Standard API limits

    Environment Variables

    VariableDescriptionRequired
    BATCHDATA_API_KEYYour BatchData.io API keyYes

    Error Handling

    The server includes comprehensive error handling for:

    • Invalid API keys
    • Network request failures
    • Malformed requests
    • API rate limit exceeded
    • Invalid parameter combinations

    Dependencies

    • @modelcontextprotocol/sdk: Core MCP framework
    • zod: Runtime type validation
    • dotenv: Environment variable loading
    • typescript: TypeScript compiler
    • @types/node: Node.js type definitions

    Contributing

    See CONTRIBUTING.md for development setup and guidelines.

    License

    MIT License - See LICENSE for details.

    Support

    • BatchData API: Documentation | Dashboard
    • MCP Protocol: Documentation
    • Issues: GitHub Issues

    MCP Badge

    ---

    Real Estate professionals and developers: This MCP server enables Claude to access comprehensive property data, perform address verification, and conduct advanced property searches directly through natural language queries.

    Similar MCP

    Based on tags & features

    • ME

      Metmuseum Mcp

      TypeScript·
      14
    • MC

      Mcp Browser Kit

      TypeScript·
      36
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • ME

      Metmuseum Mcp

      TypeScript·
      14
    • MC

      Mcp Browser Kit

      TypeScript·
      36
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k