Propstack Mcp Server
About
Connect AI assistants to Propstack real estate CRM. Search contacts, manage properties, track deals, schedule viewings, and manage your entire real estate pipeline through natural language. 47 tools covering the complete Propstack API.
Details
- Author
- ashev87
- Downloads
- 294
- Categories
- Productivity, Other, Project Management, Automation, Search
Jump to
- Search contacts
- Manage properties
- Track deals
- Schedule viewings
- Manage real estate pipeline through natural language
- 47 tools covering the complete Propstack API
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Propstack Mcp ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Use natural language commands to access the 47 tools covering the complete Propstack API.
search_contacts
Search and filter contacts in Propstack CRM. Use this tool to: - Find contacts by name, email, or phone number - List recent leads (sort by created_at desc) - Find uncontacted leads (last_contact_at is null) - Filter by broker assignment, status, tags, or GDPR status - Search across all contact fields with 'q' parameter The 'q' parameter searches across: first name, last name, all emails, all addresses, and all phone numbers. Phone search ('phone_number') ignores formatting — both 015712345678 and 0157-123-456-78 will match. Returns paginated results. Use expand=true for full details including custom fields. Custom fields: pass 'custom_filters' as an object of custom-field-name → value to filter by agency-specific fields (use list_custom_fields to discover field names). Each entry becomes a cf_<name> query parameter, e.g. { marketing_channel: "Website" }. Data minimization (Art. 25 DSGVO): pass 'fields' with an array of contact field names to return only those fields per contact (e.g. ["first_name", "last_name", "email"]). Omit 'fields' to return the default set unchanged. Unknown field names produce an error listing the valid options.
get_contact
Get full details of a single contact by ID. Use this tool to: - View complete contact information before a call - Check relationships, documents, and owned properties - See sub-contacts (e.g. family members at same address) Use 'include' to load related data in one request.
create_contact
Create a new contact in Propstack CRM. Use this tool to: - Register a new lead after a phone call - Create a contact from a web form submission - Add a new property owner Auto-upserts: if a contact with the same email or old_crm_id already exists, it will be updated instead of creating a duplicate. Use get_contact_sources first to find valid source IDs.
update_contact
Update an existing contact in Propstack CRM. Use this tool to: - Update contact details after a call - Change broker assignment - Add or remove tags (Merkmale) - Update GDPR status - Change contact rating or status Tag management options: - group_ids: replaces ALL tags with this list - add_group_ids: adds tags without removing existing ones - sub_group_ids: removes specific tags Only provide the fields you want to change.
delete_contact
Delete a contact from Propstack CRM (soft delete). The contact is moved to a 30-day recycle bin and can be restored. Use this tool for: - GDPR deletion requests (Art. 17 DSGVO) - Removing duplicate contacts - Cleaning up test data
get_contact_sources
List all available contact/lead sources in Propstack. Returns the list of sources like "Immobilienscout 24", "Website", "Empfehlung", etc. with their IDs. Use this tool to look up valid source IDs before creating or updating contacts with client_source_id.
search_contacts_by_phone
Look up a contact by phone number. This is the go-to tool for voice agent caller identification. When a call comes in, use this tool with the caller's phone number to instantly find the matching contact. Phone matching ignores formatting — all of these find the same contact: 015712345678, 0157-123-456-78, +49 157 12345678 Returns the matching contact(s) with key details. If no match is found, the caller is unknown and you should create a new contact.
search_properties
Search and filter properties (Objekte) in Propstack CRM. Use this tool to: - Find properties by address, ID, or exposé ID (use 'q' for fulltext) - Filter by status, type, marketing type, or project - Find properties in a price/rent range - List properties by size, rooms, or construction year - Filter by custom fields via the 'custom_filters' object (see below) The 'q' parameter searches: unit_id, street, zip code, city, district, exposé ID. Range filter pattern: 11 numeric fields each have _from and _to variants. For example, price_from=200000 & price_to=400000 finds properties priced 200–400k. Available range fields: price, base_rent, total_rent, property_space_value, living_space, plot_area, number_of_rooms, number_of_bed_rooms, number_of_bath_rooms, floor, construction_year. Common queries: - "Apartments 300–400k in Berlin": q="Berlin", marketing_type=BUY, rs_type=APARTMENT, price_from=300000, price_to=400000 - "All available rentals": marketing_type=RENT, status=<available_id from get_property_statuses> - "Properties on market 90+ days": sort_by=created_at, order=asc - "What's in Project X?": project_id=<id> Custom fields: pass 'custom_filters' as an object of custom-field-name → value (use list_custom_fields to discover field names). Each entry becomes a cf_<name> query parameter, e.g. { energy_class: "A" }. Always returns total count. Use expand=true for custom fields. Data minimization (Art. 25 DSGVO): pass 'fields' with an array of property field names to return only those fields per property (e.g. ["id", "title", "price", "city"]). Omit 'fields' to return the default set unchanged. Unknown field names produce an error listing the valid options.
get_property
Get full details of a single property by ID. Use this tool to: - View complete property information for an exposé - Check images, floorplans, documents, and links - See custom fields, broker assignment, and project - Get multilingual texts (use locale parameter) Always fetches with new=1 (extra fields) and expand=1 (custom fields).
create_property
Create a new property (Objekt) in Propstack CRM. Use this tool to: - List a new property from an acquisition call - Create a listing from an owner inquiry - Add a property to a project Use get_property_statuses to look up valid status IDs. Use the relationships_attributes array to link an owner contact on creation. rs_type values: APARTMENT, HOUSE, TRADE_SITE, GARAGE, SHORT_TERM_ACCOMODATION, OFFICE, GASTRONOMY, INDUSTRY, STORE, SPECIAL_PURPOSE, INVESTMENT. rs_category provides sub-types (e.g. PENTHOUSE, VILLA, MAISONETTE for APARTMENT/HOUSE).
update_property
Update an existing property in Propstack CRM. Use this tool to: - Update the price or rent - Change property status (e.g. mark as reserved or sold) - Edit description texts - Assign to a different broker or project - Update custom fields Only provide the fields you want to change. Use get_property_statuses to look up valid status IDs.
get_property_statuses
List all available property statuses in Propstack. Returns statuses like "Verfügbar", "Reserviert", "Verkauft" with their IDs, colors, and sort positions. Use this tool to look up valid status IDs before: - Filtering properties by status in search_properties - Setting a property's status in create_property or update_property
create_task
Create a task (note, to-do, appointment, or cancellation) in Propstack. This is the central write endpoint for ALL activity types. The mode is determined by which flags you set: MODE 1 — Note (Notiz): Just provide title + body. No special flags needed. Example: log a call note after a conversation. MODE 2 — To-do (Aufgabe): Set is_reminder: true + due_date. Example: "remind me to call Herr Müller back tomorrow" MODE 3 — Appointment (Termin): Set is_event: true + starts_at + ends_at. Example: "schedule a viewing at Musterstr 12 at 3pm" MODE 4 — Cancellation (Absage): Set reservation_reason_id to a valid reason. Example: "cancel deal — buyer withdrew financing" Always link tasks to contacts/properties/projects via the *_ids arrays so they appear in the correct activity feeds. The body field accepts HTML content.
update_task
Update an existing task in Propstack. Use this tool to: - Mark a to-do as done - Reschedule an appointment (change starts_at/ends_at) - Add notes to an existing task (update body) - Change broker assignment - Update event state (took_place, cancelled) - Link additional contacts or properties Only provide the fields you want to change.
get_task
Get full details of a single task by ID. Returns the task with all linked entities expanded (contacts, properties, projects, viewings) by default. Use this tool to: - View full context of an activity before acting on it - Check linked contacts and properties - See appointment details (time, location, state) - Check if a to-do has been completed
search_deals
Search and filter deals (contact↔property relationships) in Propstack. Use this tool to: - Show all deals in a specific pipeline stage - Find deals for a contact or property - Track deal pipeline progress for a project - Find lost deals and cancellation reasons - Filter by broker, team, feeling (cold/warm/hot) A "deal" represents an interested contact linked to a property at a specific stage in a sales/rental pipeline (e.g. Anfrage → Besichtigung → Reserviert → Notartermin → Verkauft). Use include="client,property" to get expanded contact and property details in one request. Common queries: - All active deals: category="qualified" - Lost deals this month: category="lost" + created_at_from - Deals for a property: property_id=123 - Pipeline view: deal_pipeline_id + sort_by=deal_stage_id Data minimization (Art. 25 DSGVO): pass 'fields' with an array of deal field names to return only those fields per deal (e.g. ["id", "deal_stage_id", "sold_price"]). Omit 'fields' to return the default set unchanged. Unknown field names produce an error listing the valid options.
create_deal
Create a deal linking an interested contact to a property in Propstack. A deal represents a contact's interest in a property and tracks it through pipeline stages (e.g. Anfrage → Besichtigung → Reserviert → Notartermin → Verkauft). Use this tool after: - A viewing to formalize interest - A contact inquiry about a property - Moving a lead into the sales pipeline Requires client_id, property_id, and deal_stage_id. Use list_pipelines or get_pipeline to find valid pipeline and stage IDs.
update_deal
Update an existing deal in Propstack. Use this tool to: - Move a deal to the next pipeline stage (change deal_stage_id) - Update expected/agreed price - Add or update notes - Change broker assignment - Update feeling score after contact - Record cancellation reason Only provide the fields you want to change.
list_search_profiles
List search profiles (Suchprofile) in Propstack. A search profile captures what a buyer or renter is looking for — cities, price range, room count, features, etc. Every search profile belongs to a contact. Use this tool to: - See what a specific contact is looking for (filter by client) - List all active search profiles - Review criteria before matching properties Filter by contact ID to answer "What is this buyer looking for?"
create_search_profile
Create a search profile (Suchprofil) for a contact in Propstack. This is THE killer feature for an AI real estate assistant. When a buyer or renter describes what they're looking for in natural language, map it to structured search criteria: Example conversation: "Herr Weber sucht eine 3-Zimmer-Wohnung in Berlin oder Potsdam, Budget 300.000–400.000 €, muss einen Balkon haben" → client_id: <Herr Weber's ID> marketing_type: "BUY" rs_types: ["APARTMENT"] cities: ["Berlin", "Potsdam"] number_of_rooms: 3, number_of_rooms_to: 3 price: 300000, price_to: 400000 balcony: "true" Mapping guide: - "Wohnung" / "apartment" → rs_types: ["APARTMENT"] - "Haus" / "house" → rs_types: ["HOUSE"] - "kaufen" / "buy" → marketing_type: "BUY" - "mieten" / "rent" → marketing_type: "RENT" - "3 Zimmer" → number_of_rooms: 3, number_of_rooms_to: 3 - "3-4 Zimmer" → number_of_rooms: 3, number_of_rooms_to: 4 - "bis 400k" → price_to: 400000 - "mind. 80m²" → living_space: 80 - "mit Balkon" → balcony: "true" - "mit Aufzug" → lift: "true" - "mit Garten" → garden: "true" - "mit EBK" → built_in_kitchen: "true" - "Neubau" → construction_year: 2020 Feature booleans use strings: "true" = required, "false" = excluded, omit = don't care. Use radius search (lat/lng/radius) for "within 5km of Alexanderplatz".
update_search_profile
Update an existing search profile in Propstack. Use this tool to: - Expand or narrow budget ("increase max price to 450k") - Add or change cities ("also look in Potsdam") - Adjust room count or space requirements - Toggle feature requirements (add/remove balcony, lift, etc.) - Activate or deactivate the profile Only provide the fields you want to change.
delete_search_profile
Delete a search profile from Propstack. Use this tool when: - A contact has found a property and is no longer searching - The search profile was created in error - A contact explicitly asks to stop receiving matching notifications
list_projects
List development projects in Propstack. A project is a "super-object" that groups multiple property units (e.g. a new-build apartment complex with 20 units). Use this tool to: - See all active development projects - Get an overview of unit counts and statuses - Find a project by name before drilling into its units Use expand=true to include custom fields in the response.
get_project
Get full details of a single project by ID. Returns the complete project with all units, images, floorplans, documents, and links. Use this tool to: - See how a project is performing (unit statuses) - Check how many units are still available vs. sold/reserved - View project media and documents - Get unit-level details (prices, sizes, statuses)
search_activities
Search the activity feed/timeline in Propstack. Activities are the read-only feed of everything that happened: emails sent, notes logged, tasks created, events scheduled, cancellations, GDPR policy changes, etc. Use this tool to: - View the full interaction history for a contact (client_id) - See all activity on a property (property_id) - Track what a broker has been doing (broker_id) - Filter by activity type to find specific interactions - Answer "what happened with this contact/property this week?" Activity types: - message: Emails sent/received - note: Call notes, comments - reminder: To-do items (Aufgaben) - event: Appointments (Termine) - policy: GDPR consent changes - cancelation: Deal cancellations (Absagen) - decision: Deal decisions - sms: SMS messages - letter: Letters (Briefe) Use list_activity_types to see all valid types for this account.
list_events
List calendar events (Termine) in Propstack. Events are appointments like property viewings, client meetings, notary appointments, etc. Use this tool to: - See what's scheduled this week (starts_at_after/starts_at_before) - List upcoming viewings for a broker (broker=ID) - Find cancelled appointments (state="cancelled") - Check recurring events - Filter by contact (client=ID) or property (property=ID) - Answer "what viewings are scheduled this week?" Event states: - neutral: Scheduled, not yet happened - took_place: Completed - cancelled: Was cancelled
send_email
Send an email using a Propstack email template (snippet). Propstack sends emails through connected broker email accounts. The broker_id determines which account sends the email. The snippet_id selects the email template to use. Use this tool to: - Send an exposé to an interested contact - Send a follow-up email after a viewing - Send a confirmation or rejection to a lead Link the email to contacts, properties, and projects so it appears in the correct CRM activity feeds. Important: - broker_id must be a broker with a connected email account - snippet_id is the email template ID — the template may contain merge fields that Propstack fills automatically (contact name, property details, etc.) - to[] are the recipient email addresses - cc[] are optional CC recipients
update_email
Update an email in Propstack. Use this tool to: - Mark an email as read or unread - Archive an email - Categorize an email (set message_category_id) - Link an email to contacts, properties, or projects Only provide the fields you want to change.
list_documents
List documents attached to a property, project, or contact. Documents include floor plans (Grundrisse), exposés, contracts, photos, and any other uploaded files. Use this tool to: - See all documents for a property ("Where's the Grundriss?") - List a contact's uploaded files - Find exposés or contracts for a project - Check what's already been uploaded before adding more Filter by exactly one of property_id, project_id, or client_id.
upload_document
Upload a document to a property, project, or contact in Propstack. The doc field must be a base64 data URI, e.g.: "data:application/pdf;base64,JVBERi0xLjQ..." "data:image/png;base64,iVBORw0KGgo..." Attach to exactly one entity: property_id, project_id, or client_id. Use the boolean flags to classify the document: - is_floorplan: Mark as a floor plan (Grundriss) - is_exposee: Mark as an exposé document - is_private: Hide from public/portal views - on_landing_page: Show on the property landing page
create_ownership
Link a contact as the OWNER (Eigentümer) of a property. Use this tool to: - Record property ownership ("Herr Müller owns Hauptstraße 12") - Set up owner relationships for acquisition properties - Link sellers to their properties The ownership appears on both the contact's and the property's record.
create_partnership
Link a contact as a PARTNER (buyer, tenant, etc.) to a property. Use this tool to: - Link a buyer to a property ("Frau Schmidt is the buyer of Hauptstraße 12") - Link a tenant to a rental property - Create any named contact↔property relationship The name field describes the role (e.g. "Käufer", "Mieter", "Verwalter").
list_pipelines
List all deal pipelines and their stages in Propstack. Returns each pipeline with its ordered stages, including stage IDs, names, positions, colors, and chance percentages. You NEED stage IDs from this tool to create or move deals. Call this before using create_deal or update_deal if you don't know the stage IDs. Typical pipelines: Sales (Verkauf), Acquisition (Akquise), Rental (Vermietung). Typical stages: Anfrage → Besichtigung → Reserviert → Notartermin → Verkauft.
get_pipeline
Get a single deal pipeline by ID with its stages. Returns the pipeline with all stages in order. Use this when you already know which pipeline you need and want its stage details.
list_tags
List all tags/labels (Merkmale/Gruppen) in Propstack. Use these IDs to filter contacts (search_contacts group param) or assign tags (create_contact/update_contact group_ids). Filter by entity to get tags for contacts, properties, or activities. Entity: for_clients (default), for_properties, for_activities. Returns flat list: **Name** (ID: 123). Use super_groups param to optionally try hierarchical view via /super_groups.
create_tag
Create a new tag/label (Merkmal) in Propstack. Tags are used to categorize contacts, properties, and activities. Optionally assign to a parent super-group (Obermerkmal) for hierarchy. Examples: "Penthouse-Käufer", "VIP", "Kapitalanleger", "Erstbezug".
list_custom_fields
List custom field definitions for an entity type in Propstack. IMPORTANT: Call this tool to discover what custom fields exist before reading or writing custom field values on contacts, properties, etc. Returns field groups, each containing field definitions with: - name: The API key to use (e.g. "cf_budget_range") - pretty_name: Human-readable label (e.g. "Budget Range") - type: Field type (String, Dropdown, Number, Date, etc.) - options: Available values for Dropdown fields To READ custom fields: use expand=true on search or get tools. To WRITE custom fields: use partial_custom_fields: {"cf_field_name": "value"}. To FILTER by custom fields: add cf_fieldname=value as a search param.
list_users
List all brokers/agents (Nutzer) in the Propstack account. Returns team members with their IDs, names, email, phone, position, team, and department assignments. You need broker IDs for: - Assigning contacts or properties to a broker - Filtering by broker in search tools - Setting the sender for emails (send_email broker_id) - Assigning tasks and events
list_teams
List all teams/departments in Propstack. Returns teams with their broker member assignments. Use for team-level filtering and to understand the organizational structure.
list_activity_types
List all activity/task types in Propstack. These are templates for creating notes, todos (reminders), events, and messages. Each has an id, name, and category. Use these IDs when creating tasks: - category "for_notes" → note_type_id in create_task - category "for_reminders" → todo_type_id (when is_reminder: true) - category "for_events" → event_type_id (when is_event: true) - category "message" → snippet_id for email templates Categories map to search_activities filter: for_notes→note, for_reminders→reminder, for_events→event, message→message.
list_contact_statuses
List contact statuses (Kontaktstatus) in Propstack. Use these IDs for search_contacts (status param) and create_contact/update_contact (client_status_id). E.g. "Lead", "Kunde", "Archiviert".
list_reservation_reasons
List deal cancellation reasons (Reservierungsgründe/Absagegründe). Use when creating deal cancellations (create_task with reservation_reason_id) or filtering lost deals (search_deals reservation_reason_ids).
list_locations
List geographic areas/districts (Geolagen) in Propstack. Returns location IDs and names used for property and search profile location matching. Use location IDs when creating search profiles or filtering properties by area.
full_contact_360
Get a complete 360° view of a contact — everything you need before calling a client. Combines 4 API calls in parallel: - Full contact details with children, documents, relationships, owned properties - Search profiles (what they're looking for) - Active deals (which properties they're linked to) - Recent activity (last 10 interactions) Returns a complete contact dossier in one request. Use this when you need the full picture: "Tell me everything about Herr Weber." Data minimization (Art. 25 DSGVO): pass 'fields' with an array of contact field names to limit the contact detail section to only those fields (e.g. ["first_name", "last_name", "email"]). The search profiles, deals, and activity sections are unaffected. Omit 'fields' for the full detail section. Unknown field names produce an error listing the valid options.
property_performance_report
Performance report for a property — days on market, inquiry count, pipeline breakdown, and activity summary. Combines 3 API calls in parallel: - Full property details (with custom fields) - All deals/inquiries for this property - Activity feed (last 50 interactions) Calculates: days on market, total inquiries, deals by stage/category, and recent activity breakdown by type. Use when asked: "How is the Friedrichstr property doing?"
pipeline_summary
Pipeline overview — deals per stage, total values, and stale deals needing attention. Fetches all deal pipelines and deals, then aggregates: - Deal count per stage - Total value per stage (from deal price or property price) - Stale deals: deals with no update in 14+ days Filter by pipeline_id and/or broker_id. Use when asked: "How's the pipeline looking?" or "Give me a sales overview."
smart_lead_intake
Complete lead intake workflow — dedup check, create/update contact, log notes, create deal if specific property, and set follow-up reminder. Perfect for post-call processing from a voice agent. Handles the entire intake in one tool call: 1. If phone or email provided → search for existing contact (dedup) 2. If found → update contact; if not → create new contact 3. If notes provided → log as a note task 4. If property_id provided → create deal at first pipeline stage 5. Create follow-up reminder for broker (due tomorrow 9am) Returns what was done: created vs updated, IDs of all created records.
match_contacts_to_property
Find contacts whose search profiles match a property. Returns a ranked list with match scores. Use when a new listing comes in to find potential buyers/renters: "Who should I send this new listing to?" Logic: 1. Fetches the property details (type, price, rooms, space, city, features) 2. Fetches active search profiles (paginates, capped by max_profiles) 3. Scores each profile against the property on: marketing type, city, price range, room count, living space, property type, and features 4. Returns top 20 matches sorted by score with match/mismatch details
list_webhooks
List all configured webhooks in Propstack. Returns each webhook with its URL, subscribed events, active status, and HMAC secret. Use to review existing automation triggers.
create_webhook
Create a webhook to subscribe to Propstack CRM events. Propstack will POST a JSON payload to target_url whenever the event fires. Use HMAC verification (secret in response) to validate payloads. Common events: - CLIENT_CREATED — new contact added - CLIENT_UPDATED — contact details changed - PROPERTY_UPDATED — property details or status changed Use this to set up automation triggers, e.g.: "Notify me when any property status changes" "Alert when a new contact is created"
delete_webhook
Delete a webhook subscription from Propstack. Removes the webhook so Propstack will stop sending events to its URL.
get_contact_favorites
Get properties that a contact has favorited/bookmarked. Returns the list of properties the contact has marked as favorites in Propstack. Use to understand which listings a buyer is most interested in.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"propstack mcp server": {
"propstack": {
"command": "npx",
"args": [
"propstack-mcp-server"
],
"env": {
"PROPSTACK_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
}
McpServers
{
"propstack": {
"command": "npx",
"args": [
"propstack-mcp-server"
],
"env": {
"PROPSTACK_API_KEY": "<YOUR_API_KEY>"
}
}
}
Connect AI assistants (Claude, ChatGPT) to your Propstack real estate CRM.
Verbinden Sie KI-Assistenten mit Ihrem Propstack-CRM— Kontakte verwalten, Objekte durchsuchen, Deals pflegen, Besichtigungen planen und Suchprofile erstellen, alles per Sprache oder Chat.
What you can do / Was Sie damit machen koennen
- Contact management— search, create, update, and tag contacts with GDPR tracking
- Property search & management— filter by price, rooms, area, status; create and update listings
- Deal pipeline— create deals, move through stages, track win/loss rates
- Buyer matching— create search profiles from natural language ("3-Zimmer in Berlin, bis 400k, mit Balkon") and auto-match to new listings
- Task & calendar— log call notes, set follow-up reminders, schedule viewings
- Email— send templated emails linked to contacts and properties
- 360-degree contact view— get a complete briefing before every call
- Pipeline dashboards— deal counts and values per stage, stale deal alerts
- Lead intake— one-call workflow: dedup, create contact, log notes, create deal, set reminder
Data protection (DSGVO):Using this server sends personal data from your Propstack CRM into the LLM you connect (Claude, ChatGPT, …). You — the Propstack customer — remain the data controller. SeeDatenschutz (DSGVO)for responsibility, legal basis, thefieldsdata-minimization parameter, and notes on automated decisions.
export PROPSTACK_API_KEY=your_api_key_here
Add to your Claude Desktop config (claude_desktop_config.json):
{ "mcpServers": { "propstack": { "command": "npx", "args": ["-y", "propstack-mcp-server"], "env": { "PROPSTACK_API_KEY": "your_api_key_here" } } } }
{ "mcpServers": { "propstack": { "command": "npx", "args": ["-y", "propstack-mcp-server"], "env": { "PROPSTACK_API_KEY": "your_api_key_here" } } } }
- Go toSettings > Connectors > Developer Mode
- Add a new MCP connector
- Set the command tonpx -y propstack-mcp-server
- Add environment variablePROPSTACK_API_KEY
- OpenSettings(Ctrl+,) → search "MCP"
- EditMCP ServersJSON, or addmcp.jsonin project root /.cursor/
Option A — local project(afternpm run build):
{ "mcpServers": { "propstack": { "command": "node", "args": ["./dist/index.js"], "cwd": "C:/Users/you/path/to/propstack_mcp", "env": { "PROPSTACK_API_KEY": "your_api_key_here" } } } }
Or use.envin project root — the server loads it automatically; you can omit theenvblock.
Option B — npx(published package ornpxfrom local):
{ "mcpServers": { "propstack": { "command": "npx", "args": ["-y", "propstack-mcp-server"], "env": { "PROPSTACK_API_KEY": "your_api_key_here" } } } }
npm install propstack-mcp-server PROPSTACK_API_KEY=your_key npx propstack-mcp-server
Hinweis:Der API-Schluessel bestimmt die Berechtigungen. Stellen Sie sicher, dass Lese- und Schreibzugriff fuer die benoetigten Endpunkte aktiviert ist.
Activities & Events (Aktivitaeten & Termine)
Smart Composites (Intelligente Workflows)
Example Conversations / Beispiel-Konversationen
AI:callslist_eventswith today's date range— You have 3 viewings scheduled...
KI:ruftsearch_contactsmit created_at_from=gestern auf— 5 neue Kontakte...
You:I just got off the phone with Maria Schmidt, +49 157 1234 5678. She's looking for a 3-room apartment in Berlin, budget 300-400k, must have a balcony. She found us on ImmoScout.
AI:callssmart_lead_intake— Contact created (ID: 4521), call note logged, follow-up reminder set for tomorrow 9:00. Would you like me to create a search profile for her criteria?
Du:Wir haben ein neues Listing: 3-Zimmer-Wohnung in Charlottenburg, 385.000 EUR. Wer kommt als Kaeufer in Frage?
KI:ruftmatch_contacts_to_propertyauf— 12 passende Suchprofile gefunden. Top 3: Herr Weber (Score 95%), Frau Mueller (Score 88%), Herr Kim (Score 85%)...
You:How's our sales pipeline looking? Any stale deals?
AI:callspipeline_summary— 47 active deals, total value 12.3M EUR. 5 deals haven't been updated in 14+ days...
Du:Gib mir alles ueber Kontakt 3847 — ich rufe gleich an.
KI:ruftfull_contact_360auf— Herr Weber, Rating 3 Sterne, sucht 3-Zimmer in Berlin/Potsdam bis 400k. 2 aktive Deals, letzte Aktivitaet vor 3 Tagen...
English summary:Using this MCP server sends personal data from your Propstack CRM into whichever LLM you connect. You (the Propstack customer) are the data controller (Verantwortlicher) under Art. 4(7) GDPR — the tool author hosts and processes nothing. The German section below covers controller responsibility, the legal basis your LLM processing needs, thefieldsparameter for data minimization, automated-decision notes formatch_contacts_to_property, and audit logging. These points apply to any LLM tool handling customer data; they are stated here because they are easy to overlook.
Dies ist ein quelloffenes Werkzeug (Open Source). Jeder Nutzer verbindet es über seinen eigenen API-Schluessel mit seinem eigenen Propstack-Konto. Der Server ist zustandslos, laeuft lokal beim jeweiligen Nutzer und speichert keine Daten. Es werden keine Daten durch den Autor des Werkzeugs gehostet oder verarbeitet. Der Propstack-Kunde, der dieses Werkzeug einsetzt, ist derVerantwortlicheim Sinne von Art. 4 Nr. 7 DSGVO.
Bei der Nutzung dieses Werkzeugs werden personenbezogene Daten (Namen, Adressen, Kontaktdaten sowie je nach Tool auch Finanz- bzw. Deal-Daten) in das Kontextfenster des jeweils verbundenen LLM (Claude, ChatGPT usw.) uebertragen. Dies stellt einenVerarbeitungsvorgangim Sinne von Art. 4 Nr. 2 DSGVO dar. Der Verantwortliche benoetigt hierfuer:
- eineRechtsgrundlagenach Art. 6 DSGVO,
- eine entsprechende Angabe in der eigenenDatenschutzerklaerung(Transparenzpflichten nach Art. 13/14 DSGVO gegenueber den betroffenen Personen),
- gegebenenfalls einenAuftragsverarbeitungsvertrag (AVV)mit dem LLM-Anbieter.
Dies gilt fuer jedes LLM-gestuetzte Werkzeug, das Kundendaten verarbeitet, und ist nicht spezifisch fuer diesen MCP-Server — es wird hier dennoch ausdruecklich genannt, da es leicht uebersehen wird.
Hinweis zu automatisierten Entscheidungen (match_contacts_to_property)
Das Toolmatch_contacts_to_propertyerzeugt einen Uebereinstimmungs-Score (Ranking) zwischen Kontakten und einem Objekt — zur Vorlage fuer eine menschliche Pruefung. Es ist alsEntscheidungsunterstuetzungkonzipiert, nicht als autonomer Entscheider: Der Makler prueft die Ergebnisse und handelt manuell. Dadurch faellt die Nutzung nicht unter Art. 22 DSGVO (der ausschliesslich automatisierte Entscheidungen mit rechtlicher oder aehnlich erheblicher Wirkung betrifft). Der Verantwortliche sollte jedoch sicherstellen, dass das Tool auch tatsaechlich so eingesetzt wird — also nicht ohne menschliche Pruefung in eine vollstaendig automatisierte Ansprache eingebunden wird.
Die Tools, die personenbezogene Daten in groesserem Umfang zurueckgeben —search_contacts,search_properties,search_dealsundfull_contact_360— unterstuetzen einen optionalenfields-Parameter. Damit lassen sich gezielt nur die benoetigten Felder abrufen (z. B.["first_name", "last_name", "email"]). Ohnefieldsbleibt das Verhalten unveraendert (alle Felder werden zurueckgegeben). Es wird empfohlen, dass Verantwortlichefieldsnutzen, um nur die fuer den jeweiligen Zweck erforderlichen Daten zu verarbeiten — im Sinne vonDatenschutz durch Technikgestaltung(Art. 25 DSGVO).
Protokollierung von Zugriffen und Zugriffskontrolle liegen in der Verantwortung des Verantwortlichen — etwa ueber die Berechtigungssteuerung von Propstack (API-Schluessel-Berechtigungen) oder ueber Protokollierung auf Client- bzw. Sitzungsebene. Da der Server zustandslos ist und lokal beim jeweiligen Nutzer laeuft, ist eine solche Protokollierung nicht im Werkzeug selbst enthalten.
git clone <repo-url> cd propstack-mcp-server npm install npm run build # tsc → dist/ npm start # requires PROPSTACK_API_KEY
src/ index.ts # Server entry point (stdio transport) propstack-client.ts # HTTP client with auth, retry, error handling types/ propstack.ts # TypeScript interfaces for all API responses tools/ helpers.ts # Shared formatting utilities contacts.ts # 7 contact tools properties.ts # 5 property tools tasks.ts # 3 task tools (polymorphic: note/todo/event/cancel) deals.ts # 3 deal pipeline tools search-profiles.ts # 4 search profile tools projects.ts # 2 project tools activities.ts # 2 activity/event tools emails.ts # 2 email tools documents.ts # 2 document tools relationships.ts # 2 relationship tools (ownership/partnership) lookups.ts # 8 lookup/config tools composites.ts # 5 smart composite tools admin.ts # 5 admin tools (webhooks, export, favorites)
157-tool MCP server for Follow Up Boss CRM covering contacts, deals, pipeline, tasks, emails, smart lists, action plans, and webhooks.
Qasper gives AI agents the tools to discover local service businesses, check availability, and book appointments in real time.
AI-powered CRM for small business sales teams with lead scoring, built-in dialer, WhatsApp/SMS, email automation, and forecasting.
An open framework to connect AI agents into your monday.com work OS, giving them secure access to data and tools to take action.
A sales automation system that integrates Gmail, Google Sheets, Streak CRM, Notion, and Google Drive into a unified workflow.
42-tool MCP server for CRM, relationship intelligence, and multi-agent orchestration. Search contacts, manage deals, analyze relationships, and coordinate AI agents.
Control Reply.io sequences and contacts directly from your AI model. Manage outreach, pull stats, and enroll prospects — without leaving your AI chat.
A powerful, production-ready Model Context Protocol (MCP) server for Zammad - the open-source helpdesk and ticket system.
Search Brazilian real estate listings, simulate financing, qualify leads, and schedule visits directly from any LLM.
Operate and customize a tenant-isolated AI CRM for customers, sales, jobs, marketing, reviews, workflows, documents, and workspace pages.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





