# EasyBroker — Pipedream Connect

> CRM, MLS and Marketing Software for Real Estate Agencies

- API slug: `easybroker` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: CRM
- Website: https://www.easybroker.com
- This page (HTML): https://pipedream.com/apps/easybroker
- Tools: 8 actions · 2 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: easybroker`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "easybroker",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Contact Request:
const result = await mcp.callTool({
  name: "easybroker-create-contact-request",
  arguments: {
    source: "Source",
    propertyId: "Property ID",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "easybroker-create-contact-request",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    easybroker: { authProvisionId: "apn_xxxxxxx" },
    source: "Source",
    propertyId: "Property ID",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (8)

### `easybroker-create-contact-request` — Create Contact Request (Write)

Creates or updates a new lead in EasyBroker that is interested in the provided property. See the documentation

Full schema: https://pipedream.com/apps/easybroker/actions/create-contact-request.md

### `easybroker-create-property` — Create Property (Write)

Creates a new property listing in EasyBroker with full details including title, price, location, bedrooms, bathrooms, parking, size, description, amenities, photos, and status. See the documentation

Full schema: https://pipedream.com/apps/easybroker/actions/create-property.md

### `easybroker-get-contact` — Get Contact (Read-only)

Get details of a contact. See the documentation

Full schema: https://pipedream.com/apps/easybroker/actions/get-contact.md

### `easybroker-get-property` — Get Property (Read-only)

Get details of a property. See the documentation

Full schema: https://pipedream.com/apps/easybroker/actions/get-property.md

### `easybroker-list-contact-id-options` — List Contact ID Options (Read-only)

Retrieves available options for the Contact ID field.

Full schema: https://pipedream.com/apps/easybroker/actions/list-contact-id-options.md

### `easybroker-list-contact-requests` — List Contact Requests (Read-only)

List all contact requests. See the documentation

Full schema: https://pipedream.com/apps/easybroker/actions/list-contact-requests.md

### `easybroker-list-property-id-options` — List Property ID Options (Read-only)

Retrieves available options for the Property ID field.

Full schema: https://pipedream.com/apps/easybroker/actions/list-property-id-options.md

### `easybroker-list-property-types` — List Property Types (Read-only)

Returns a list of all available property types. See the documentation

Full schema: https://pipedream.com/apps/easybroker/actions/list-property-types.md

## Triggers (2)

### `easybroker-new-contact-created` — New Contact Created (Polling)

Emit new event when a new contact is created. See the documentation

Full schema: https://pipedream.com/apps/easybroker/triggers/new-contact-created.md

### `easybroker-new-contact-request-created` — New Contact Request Created (Polling)

Emit new event when a new contact request is created. See the documentation

Full schema: https://pipedream.com/apps/easybroker/triggers/new-contact-request-created.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
