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

@iflow-mcp/amineremache_dafty-mcp

v0.2.4

Published

An MCP server for daft.ie website

Downloads

14

Readme

Dafty MCP Server

License

Dafty MCP Banner

Disclaimer

This is an independent, open-source project and is not affiliated with, endorsed, or sponsored by Daft.ie. This tool is provided for educational and experimental purposes only. The data is scraped from a publicly available website, and its use is subject to the terms of service of that website. The author assumes no liability for the use or misuse of this software. Please use it responsibly and ethically.

This is an MCP (Model Context Protocol) server designed to interact with Daft.ie, primarily for searching rental properties via web scraping.

✨ Features

  • 🔍 Search Rental Properties: Search for rental listings based on various criteria like location, price range, number of bedrooms, and property type. This tool uses web scraping.
  • 📄 Get Rental Property Details: Attempts to retrieve detailed information about a specific rental property using its unique ID.
    • Note: This tool relies on the official Daft.ie API (v3) which requires an API key. Without a valid key (set via the DAFT_API_KEY environment variable), this tool will likely fail. Refer to src/daftApi.ts for more details and a link to the Daft.ie API documentation.

🛠️ Setup

  1. Clone the repository:

    git clone [YOUR_GITHUB_REPO_URL]
    cd dafty-mcp
  2. Install dependencies:

    npm install
  3. Build the server:

    npm run build
  4. Testing (Optional but Recommended): The project uses Vitest for unit testing. To run tests:

    npm test

    To run tests in watch mode:

    npm run test:watch
  5. Configure MCP Settings: Add the following configuration to your MCP settings file (e.g., ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json):

    {
      "mcpServers": {
        "dafty-mcp": {
          "command": "node",
          "args": ["~/dafty-mcp/build/index.js"],
          "env": {},
          "disabled": false,
          "alwaysAllow": []
        }
      }
    }

🚀 Usage

Once the MCP server is configured and running, you can use the following tools:

  • use_mcp_tool with server_name: "dafty-mcp" and tool_name: "search_rental_properties"
  • use_mcp_tool with server_name: "dafty-mcp" and tool_name: "get_rental_property_details"

Example: Searching for rental properties in Dublin

<use_mcp_tool>
<server_name>dafty-mcp</server_name>
<tool_name>search_rental_properties</tool_name>
<arguments>
{
  "location": "Dublin",
  "min_price": 1000,
  "max_price": 2000,
  "num_beds": 2
}
</arguments>
</use_mcp_tool>

Example: Getting details for a specific property

<use_mcp_tool>
<server_name>dafty-mcp</server_name>
<tool_name>get_rental_property_details</tool_name>
<arguments>
{
  "property_id": "1234567"
}
</arguments>
</use_mcp_tool>