# SPACEXPLORATION MCP server

Search commercial real estate listings. Reads need no token; authoring is self-serve OAuth (DCR).

## Links
- Registry page: https://www.getdrio.com/mcp/com-spacexploration-listings
- Website: https://spacexploration.com

## Install
- Endpoint: https://spacexploration.com/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://spacexploration.com/mcp

## Tools
- get_registry (Get Registry Tool) - 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. Endpoint: https://spacexploration.com/mcp
- search_listings (Search Listings Tool) - 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. Endpoint: https://spacexploration.com/mcp
- get_listing (Get Listing Tool) - 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. Endpoint: https://spacexploration.com/mcp
- interpret_search (Interpret Search Tool) - 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. Endpoint: https://spacexploration.com/mcp
- save_search (Save Search Tool) - Save the current search as a named alert. The user will receive email digests when new matching listings appear. Requires authentication. Endpoint: https://spacexploration.com/mcp
- list_my_saved_searches (List My Saved Searches Tool) - List the authenticated user's saved searches, including their filters and alert schedule. Requires authentication. Endpoint: https://spacexploration.com/mcp
- delete_saved_search (Delete Saved Search Tool) - Delete a saved search by its ID. Only the owner may delete their own searches. Requires authentication. Endpoint: https://spacexploration.com/mcp
- list_my_listings (List My Listings Tool) - List all listings owned or brokered by the authenticated user. Optionally filter by status. Requires authentication. Endpoint: https://spacexploration.com/mcp
- geocode_address (Geocode Address Tool) - 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. Endpoint: https://spacexploration.com/mcp
- create_listing (Create Listing Tool) - 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. Endpoint: https://spacexploration.com/mcp
- update_listing (Update Listing Tool) - Update a listing's parcel, pricing, or marketing data. Pass at least one group (parcel, pricing, marketing); send each group whole, not just the changed field. Returns the full updated listing exactly as stored. Endpoint: https://spacexploration.com/mcp
- set_listing_attributes (Set Listing Attributes Tool) - 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. Endpoint: https://spacexploration.com/mcp
- attach_listing_photo (Attach Listing Photo Tool) - 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. Endpoint: https://spacexploration.com/mcp
- sign_attachment_upload (Sign Attachment Upload Tool) - 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). Endpoint: https://spacexploration.com/mcp
- confirm_attachment_upload (Confirm Attachment Upload Tool) - 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. Endpoint: https://spacexploration.com/mcp

## Resources
- registry://attributes - Registry Attributes Resource The live attribute registry snapshot — every filterable field, its type, allowed values, and display label. Clients can subscribe to this resource to stay current with schema changes. MIME type: application/json

## Prompts
Not captured

## Metadata
- Owner: com.spacexploration
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jun 9, 2026
- Source: https://registry.modelcontextprotocol.io
