com.spacexploration/listings
Official15 toolsSPACEXPLORATION
Search commercial real estate listings. Reads need no token; authoring is self-serve OAuth (DCR).
Search and access commercial real estate listings with OAuth authentication.
Captured live from the server via tools/list.
get_registry
Returns the full attribute registry — every searchable and filterable field, its type, allowed values, and display label. Read this first to understand the schema before calling search_listings with attribute filters.
No parameters.
search_listings
Search commercial real estate listings. Returns paginated hits with facet counts. For AI-driven search, call interpret_search first to convert a natural-language query into structured filters, then pass those filters — and its bounds, when present — here.
Parameters (5)
- querystring | null
Free-text search query (street address, city, or keyword). Omit or pass null for no text filter.
- filtersobject | null
Structured filter map keyed by Typesense field name. Ranges as {min?, max?}, multi-select as string[], booleans as true/false. Call get_registry to see valid field names and allowed values.
- sortstring | null
Sort key. Valid values from get_registry sort_options (e.g. "listed_at:desc", "price:asc").
- pageinteger | null
Page number (1-based). Defaults to 1.
- boundsobject | null
Geographic bounding box (degrees) limiting hits to an area. Forward the bounds returned by interpret_search verbatim to honour "near <place>" intent; omit for a nationwide search.
get_listing
Retrieve the full details of a single listing by its hashid. Returns the complete ListingResource projection including parcel data, all attribute details, and attachments. Broker contact is included only when the requesting user is authorised.
Parameters (1)
- hashidstringrequired
The short hashid of the listing (e.g. "a1b2c3d4"). Found in listing URLs and search hits.
interpret_search
Translate a natural-language property-search sentence into a structured filter payload compatible with search_listings. Use this as a transparent intermediate step: pass the user's raw query here, then forward the returned filters — and the returned bounds, when present (they carry the "near <place>" intent) — to search_listings.
Parameters (1)
- promptstringrequired
A natural-language property search sentence from the end user. Example: "industrial with rail access in Denver under $5m".
save_search
Save the current search as a named alert. The user will receive email digests when new matching listings appear. Requires authentication.
Parameters (3)
- namestring | null
A human-readable name for the saved search. If omitted, a name is derived from the filters.
- querystring | null
The free-text query string, if any.
- filtersobject | null
The structured filter map to persist (same shape as search_listings filters).
list_my_saved_searches
List the authenticated user's saved searches, including their filters and alert schedule. Requires authentication.
No parameters.
delete_saved_search
Delete a saved search by its ID. Only the owner may delete their own searches. Requires authentication.
Parameters (1)
- idintegerrequired
The numeric ID of the saved search to delete (from list_my_saved_searches).
list_my_listings
List all listings owned or brokered by the authenticated user. Optionally filter by status. Requires authentication.
Parameters (1)
- statusstring | null
Filter by listing status. One of: draft, pending_payment, active, suspended, sold, leased, withdrawn. Omit to return all statuses.
geocode_address
Geocode a free-form US address into coordinates and structured components (street_address, city, county, state, postal_code) plus a formatted address and place_id — exactly the identity fields create_listing requires. Use this first, then pass the result straight into create_listing instead of supplying your own coordinates.
Parameters (1)
- addressstringrequired
Free-form address to geocode, e.g. "3763 Imperial St, Frederick, CO 80516".
create_listing
Create a new draft listing. Returns the full created listing exactly as stored, including its hashid and status. Pass an idempotency_key (any client-generated string, e.g. a UUID) to make the call safe to retry — re-sending the same key returns the original listing instead of creating a duplicate.
Parameters (13)
- street_addressstringrequired
Street address of the property.
- citystringrequired
City.
- countystringrequired
County.
- statestringrequired
State (2-letter abbreviation).
- postal_codestringrequired
ZIP/postal code.
- latitudenumberrequired
Latitude coordinate.
- longitudenumberrequired
Longitude coordinate.
- property_typestringrequired
Property type. Allowed values are listed under the property_type attribute returned by get_registry (e.g. industrial, office, retail, land).
- listing_typestringrequired
Listing type: sale or lease.
- unitstring | null
Unit or suite number, if applicable.
- formatted_addressstring | null
Full formatted address string from geocoder.
- place_idstring | null
Place ID from geocoder.
- idempotency_keystring | null
Optional client-generated key (e.g. a UUID) making this create safe to retry: re-sending the same key within 24 hours returns the originally created listing instead of a duplicate.
update_listing
Update a listing's parcel, pricing, or marketing data. Pass exactly one group (parcel, pricing, or marketing). Returns the full updated listing exactly as stored.
Parameters (4)
- hashidstringrequired
Hashid of the listing to update.
- parcelobject | null
Parcel/address fields to update: street_address, city, county, state, postal_code, latitude, longitude, and optionally unit, lot_acres, year_built, property_type.
- pricingobject | null
Pricing fields to update: listing_type (sale|lease); for a sale set sale_price (dollars), for a lease set lease_rate (per the lease_rate_period basis, default per_sqft_year) and optionally lease_rate_period (per_sqft_year|per_sqft_month|per_month|per_year). Omit the price and set price_on_request=true for "price upon request". Optionally expires_at (ISO date).
- marketingobject | null
Marketing copy to update: headline, summary, title_override, highlights (string[]).
set_listing_attributes
Set broker-authored attributes on a listing you own. Pass `attributes` as a map of registry field name to value (the field names get_registry returns, e.g. {"attr_parking_spaces": 40, "attr_office_class": "Class A"}). Only fields get_registry marks "writable":true can be set; publish-time computed fields and hot columns (use update_listing for those) are rejected with guidance. Enum fields take the allowed value (or an array for multiselect); send null to clear a field. Returns the full updated listing.
Parameters (2)
- hashidstringrequired
Hashid of the listing to update.
- attributesobjectrequired
Map of registry field name to value, e.g. {"attr_parking_spaces": 40, "attr_office_class": "Class A", "attr_industrial_rail_access": true}. Only fields get_registry marks "writable":true are accepted. Multiselect enum fields take an array of allowed values. Send null to clear a field.
attach_listing_photo
Attach a photo to a listing you own directly from its public URL — one call, no separate sign/upload/confirm. The server fetches the image and ingests it with auto-generated thumbnail/hero/full variants. Only https image URLs whose host is publicly routable are accepted. The photo is content-moderated (must be real-estate related and safe) before it can appear publicly — the returned snapshot includes the moderation_status (approved / rejected / escalated) and moderation_reason. A rejected or escalated photo will not be publicly visible and will block publishing until removed or replaced.
Parameters (2)
- hashidstringrequired
Hashid of the listing to attach the photo to.
- source_urlstringrequired
Public https URL of the image to fetch and attach. Must point directly at an image (jpeg, png, webp, gif, avif, heic/heif) on a publicly-routable host.
sign_attachment_upload
Begin an out-of-band file upload. Returns a presigned R2 PUT URL and the headers to use; the file bytes are uploaded directly to storage, never through this channel. After PUTting the file, call confirm_attachment_upload with the returned attachment_id. Supports listings (photos, documents), users (avatar), and pages (cover, photos).
Parameters (6)
- attachable_typestringrequired
Morph alias of the resource to attach to: "listing", "user", or "page".
- attachable_idstringrequired
Identifier of the attachable resource. For "listing" pass the listing hashid (e.g. "d5yqqgoa") — the same id every read tool returns. For "user" pass "me" to attach to yourself. For "page" pass its numeric id.
- filenamestringrequired
Original filename including extension, e.g. "front-elevation.jpg". Used to derive the storage key and extension.
- content_typestringrequired
MIME type of the file, e.g. "image/jpeg" or "application/pdf". Must match the collection whitelist.
- sizeintegerrequired
Exact byte size of the file. Verified against the uploaded object at confirm time, so it must be accurate.
- collectionstring | null
Optional explicit collection: "photos", "documents", "avatar", "logo", or "cover". Omit to auto-route by MIME (images→photos, docs→documents). Singleton slots (avatar/cover/logo) must be set explicitly.
confirm_attachment_upload
Finalize an out-of-band upload after the file bytes have been PUT to the presigned URL. Verifies the stored object matches what was signed (size and content-type) and marks the attachment ready. Returns the attachment snapshot with its public variant URLs. Idempotent: confirming an already-confirmed upload returns the same snapshot.
Parameters (1)
- attachment_idstringrequired
The attachment_id (ULID) returned by sign_attachment_upload. Confirm only after the file bytes have been successfully PUT to the presigned URL.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"listings": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://spacexploration.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.