# PropFácil (remote · www.propfacil.com)

Search authorized real estate in Mexico and manage favorites and publishing with OAuth.

- Trust score: 62/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-20

## Components

- remote · `www.propfacil.com`: 62/100 (this document), [markdown](https://verifymcp.io/servers/jonatanvazquez-propfacil/api-mcp.md), [page](https://verifymcp.io/servers/jonatanvazquez-propfacil/api-mcp)

## Channel facts

- Endpoint: `https://www.propfacil.com/api/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.3.8`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-20.

- **Endpoint Security**: 60/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (delete_property_list).
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 84/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 964 tokens (~68/item across 14 items; 13 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 77/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 19% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 73/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.
  - Supports UI / widget rendering.

**Unverified: 1 category.** A category scored 0 because we could not verify it: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http jonatanvazquez-propfacil https://www.propfacil.com/api/mcp
```

### Codex

```toml
[mcp_servers.jonatanvazquez-propfacil]
url = "https://www.propfacil.com/api/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jonatanvazquez-propfacil": {
      "type": "remote",
      "url": "https://www.propfacil.com/api/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jonatanvazquez-propfacil --url https://www.propfacil.com/api/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  jonatanvazquez-propfacil:
    url: "https://www.propfacil.com/api/mcp"
```

### Other

```json
{
  "mcpServers": {
    "jonatanvazquez-propfacil": {
      "type": "http",
      "url": "https://www.propfacil.com/api/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-20 (score 62)

First indexed and scored.

## MCP tools (13)

### `search_properties` (~118 tokens)

Search properties

Use this when the user wants to find authorized PropFácil property listings in Mexico by city, transaction type, price, bedrooms, or geographic radius.

Input parameters:

- `city` (string)
- `limit` (integer)
- `maxPrice` (number)
- `minBedrooms` (integer)
- `minPrice` (number)
- `near` (string): Map center as lat,lng. Use only a location explicitly supplied by the user.
- `radius` (number): Search radius in meters.
- `transactionType` (string)

Output parameters:

- `count` (integer)
- `nextCursor` (string|null)
- `results` (array)

### `get_property` (~52 tokens)

Get property details

Use this when the user wants the details of one authorized PropFácil listing and has supplied a listingKey or ID from search_properties.

Input parameters:

- `id` (string, required): A listingKey or listing ID returned by search_properties.

Output parameters:

- `property`

### `get_property_contact` (~56 tokens)

Get property contact

Use this when the user explicitly asks to contact the advertiser or open the authorized original listing for a property previously returned by PropFácil.

Input parameters:

- `id` (string, required): A listingKey or listing ID returned by search_properties or get_property.

Output parameters:

- `contact`

### `render_property_results` (~71 tokens)

Show property results

Use this when, after search_properties, the user would benefit from interactive property cards, comparison, details, or a map. Pass only listing IDs already returned by a data tool.

Input parameters:

- `propertyIds` (array, required): Up to 12 listingKey values returned by search_properties.
- `title` (string)

Output parameters:

- `count` (integer)
- `properties` (array)
- `title` (string)

### `restore_property_results` (~36 tokens)

Restore property results

Use this when the PropFácil app needs to restore the latest public property selection for the current MCP session after its widget is recreated.

Output parameters:

- `render` (object|null)

### `publish_property` (~162 tokens)

Publish a property

Use this when an authenticated user explicitly asks to publish a property publicly on PropFácil. This creates a public listing and is safe to retry with the same idempotencyKey.

Input parameters:

- `areaSqm` (number)
- `bathrooms` (number)
- `bedrooms` (integer)
- `city` (string, required)
- `currency` (string)
- `description` (string, required)
- `idempotencyKey` (string, required): Stable unique key for this publish request; reuse it when retrying.
- `isCommercial` (boolean)
- `latitude` (number)
- `longitude` (number)
- `price` (number, required)
- `state` (string)
- `title` (string, required)
- `transactionType` (string, required)

Output parameters:

- `id` (string|null)
- `idempotentReplay` (boolean)
- `reasons` (array)
- `status` (string)
- `url` (string|null)

### `my_listings` (~28 tokens)

List my properties

Use this when an authenticated user asks to review the property listings they published on PropFácil.

Output parameters:

- `listings` (array)

### `list_property_lists` (~35 tokens)

List favorite lists

Use this when an authenticated user wants to see their PropFácil favorite lists. This returns only lists owned by the linked user.

Output parameters:

- `lists` (array)

### `get_property_list` (~39 tokens)

Get a favorite list

Use this when an authenticated user wants to inspect one of their PropFácil favorite lists and its saved properties.

Input parameters:

- `listId` (string, required)

Output parameters:

- `items` (array)
- `list` (object)

### `save_property_to_list` (~81 tokens)

Save property to favorites

Use this when an authenticated user asks to save a property to a favorite list. If no list is supplied, use the idempotent default list named Favoritos.

Input parameters:

- `listId` (string)
- `listName` (string)
- `note` (string)
- `propertyId` (string, required): A listingKey returned by search_properties.

Output parameters:

- `list` (object)
- `propertyId` (string)
- `saved` (boolean)

### `rename_property_list` (~42 tokens)

Rename a favorite list

Use this when an authenticated user asks to rename one of their PropFácil favorite lists.

Input parameters:

- `listId` (string, required)
- `name` (string, required)

Output parameters:

- `list` (object)

### `remove_property_from_list` (~56 tokens)

Remove property from favorites

Use this when an authenticated user asks to remove a saved property from one of their PropFácil lists. The list remains available if it becomes empty.

Input parameters:

- `listId` (string, required)
- `propertyId` (string, required)

Output parameters:

- `listId` (string)
- `propertyId` (string)
- `removed` (boolean)

### `delete_property_list` (~51 tokens)

Delete a favorite list

Use this when an authenticated user explicitly asks to permanently delete one of their PropFácil favorite lists and its saved entries. Do not use it for removing a single property.

Input parameters:

- `listId` (string, required)

Output parameters:

- `deleted` (boolean)
- `listId` (string)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/jonatanvazquez-propfacil/api-mcp#diagnostics

## Score history

- 2026-08-20: 62

## Links

- Remote endpoint: https://www.propfacil.com/api/mcp
- Repository: https://github.com/jonatanvazquez/propfacil-mcp
- Website: https://www.propfacil.com/docs
- Changelog RSS feed: https://verifymcp.io/servers/jonatanvazquez-propfacil/api-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/jonatanvazquez-propfacil/api-mcp.json
- HTML version of this page: https://verifymcp.io/servers/jonatanvazquez-propfacil/api-mcp
