Skip to main content
Advisor Connect is the BrightPlace MCP server for apartment discovery. AI clients call BrightPlace tools over HTTPS, then present results to renters in the client’s own conversation flow.

Production endpoint

https://mcp.brightplace.ai/mcp
The MCP resource identifier and production audience value are the same URL:
https://mcp.brightplace.ai/mcp

Tool surface

Advisor Connect exposes four launch tools:
ToolPurpose
search_listingsSearch apartment listings by semantic query and supported filters.
get_listingRead full detail for one listing returned by search.
get_tour_availabilityFetch tour slots for one listing.
book_tourSubmit a tour request for a renter and slot.
The server also has an internal health/stub tool used during development. It is not part of the public launch contract.

Renter data model

Advisor Connect does not persist general renter conversation memory. Calling agents own the transcript and pass structured tool arguments when a tool call needs them. The server stores only purpose-specific state needed for operation:
StateWhy it exists
MCP session idTransport continuity, audit ordering, and rate-limit scoping.
Audit entriesTool invocation records for monitoring and forensic review.
Booking requestsPrevents repeated active tour requests for the same renter email.

Tool results

Tool responses use a consistent envelope:
{
  "ok": true,
  "data": {},
  "latency_ms": 42
}
Errors use the same envelope with an error object:
{
  "ok": false,
  "error": {
    "error_code": "VALIDATION_ERROR",
    "message": "Tool input failed validation.",
    "details": {}
  },
  "latency_ms": 2
}
See Error Codes for the public error set.