Skip to main content
Glama
Hei33enberg

@marocain/mcp-server

by Hei33enberg

@marocain/mcp-server

npm ci license node Glama MCP Smithery MCP

The official Model Context Protocol server for marocain.investments — bringing {GIN}, our authored real-estate intelligence for Morocco, into any MCP client (Claude Desktop, IDEs, agents).

Discover, score and analyse Moroccan luxury real estate — then submit an enquiry that's routed on-platform. All the analysis is free; contact with the agent is always intermediated by the platform.

What is {GIN}?

{GIN} is the platform's proprietary scoring DNA. Instead of one blurry "AI score", it speaks with two coherent pillars fused into one honest verdict:

  • {GIN} Quality — how good the asset is (vision view/structural/condition + location + yield + WC 2030 catalyst + trust).

  • {GIN} Deal — how good the buy is (asking price vs. the M-Value AVM, adjusted for city momentum).

  • Fused verdict — one buy/hold/pass headline that can never disagree with the numbers ("Prime asset, priced to buy", "Cheap — verify condition", …).

It's the difference between a good property and a good deal — the question generic scores never answer. It's honest by design: an overpriced listing is told it's overpriced.

Related MCP server: Israel Real Estate MCP

Install

No install needed — run it straight from npm:

npx -y @marocain/mcp-server

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "marocain": {
      "command": "npx",
      "args": ["-y", "@marocain/mcp-server"]
    }
  }
}

Tools

Fourteen tools — eleven read-only analysis tools (sale and rental), a moat-safe enquiry tool, and two commerce tools (discover + order paid services).

Analyse — sales (free)

Tool

What it does

search_listings

Search AI-graded Moroccan for-sale listings by city, typology, price, rooms, free-text.

get_listing

Full detail for one listing — price (USD/MAD), AI scores, M-Value AVM, trust, {GIN} pillars + verdict.

get_gin_score

The {GIN} verdict: Quality + Deal pillars + the fused buy/hold/pass headline.

get_market

Macro market facts for a city or national scope (median price, supply, momentum, WC 2030 / TGV catalysts).

listing_derive

AI-derived one-paragraph investment memo for a listing (6 languages).

semantic_search

Conceptual / vector search across the catalogue and the authored guides (Foreign Buyer's Playbook, Morocco-vs-Dubai, AI-scoring methodology, residency, city theses).

gin_ask

Ask T{AI]GIN, the agentic investment analyst, a one-shot question — it plans, searches, scores with the {GIN} pillars and answers with citations.

gin_deal_memo

A structured, honest investor deal memo for one listing (verdict, M-Value, yield, strengths, risks, district read, next steps).

Analyse — rentals (free)

Tool

What it does

search_rentals

Search AI-graded Moroccan long-let rentals (residential / commercial / student) by city, typology, monthly-rent band (MAD or USD) and tier. Rent in MAD/month; never returns landlord/agency contact.

rent_affordability

How much monthly rent a net income comfortably supports — the same rent ≤ 33% of net income rule as /finance. Income in MAD or USD.

rent_vs_buy

Compare the monthly cost of buying vs renting a property — same mortgage annuity engine as /finance (30% down · 20y · 5.2% defaults, all overridable). Principal + interest only.

Enquire & transact

Tool

What it does

request_service

Submit a buyer enquiry / request a viewing — routed on-platform to the listing's verified agent. Returns a reference, never any contact.

list_services

The transactable service catalogue + EUR prices — buyer services (AI staging, viral content, reservation, appraiser, visitation — note the live API product_type id is spelled visaitation — the €199 AI business plan, lawyer / financing / commercialization) and agent services (listing boost, photo relight).

order_service

Order any service. Instant products return a Stripe checkout_url (pay on-platform); request-only products return a tracked order_id. Never returns contact.

Payments: card checkout for instant products may be briefly unavailable while the platform reconnects its payment processor — request-based services and buyer enquiries work regardless. order_service reports this cleanly.

Discover → analyse → enquire

The model is simple and the same for everyone: all the intelligence is free (it's lead-gen), and the only way to make contact is through the platform (that's the moat, and how agents are billed).

  1. Discover & score with search_listings / get_gin_score / semantic_search.

  2. Go deep with get_listing / gin_deal_memo / gin_ask.

  3. Enquire with request_service — it routes the buyer's interest to the listing's verified agent and returns a reference. You never receive the agent's phone, email or WhatsApp; the platform intermediates contact.

Most of the catalogue is still being onboarded by agents. request_service routes to a listing's claimed, verified agent; for a listing without one yet it returns a clear note instead of routing.

Example response shapes

get_gin_score({ id }) → the authored verdict:

{
  "id": "…",
  "title": "…",
  "price_usd": 9630000,
  "gin_verdict": { "key": "prime_value", "label": "Prime asset, priced to buy", "tone": "strong" },
  "gin_quality": 76,
  "gin_deal": 64,
  "m_value_usd": 9100000,
  "trust": { "title_verified": false, "fcr_status": "unknown" }
}

request_service({ listing_id, buyer_name, buyer_email, message }) → an on-platform reference, no contact:

{ "ok": true, "kind": "lead", "lead_id": "…", "status": "requested", "routed": true }

Moat-safe by design

No tool ever returns an agent's, landlord's or seller's contact. On top of the public API hiding the phone, this server redacts the origin-portal deep link (source_url / source_listing_id) and the agent / agency name from listing payloads — so a downstream agent can't route a user off-platform to the seller. Rentals (search_rentals) are read through the site's public, anon-granted rental_browse RPC, which is SECURITY DEFINER, scrubs PII in SQL and whose return signature carries no contact / source fields at all; the result still passes through the same central stripMoat() as every other tool. The single conversion path is request_service, which routes a buyer enquiry through marocain's own lead flow and returns a reference, never any contact. Discover, score and analyse freely; contact is always intermediated by the platform.

Troubleshooting

Symptom

Cause

Fix

request timed out after 30000ms

Upstream slow or unreachable.

Retry. Bump MAROCAIN_TIMEOUT_MS if your network is high-latency.

The Marocain API returned an error (403)

Rare — Vercel platform-level anti-bot on very bursty traffic.

Back off and retry.

valid buyer_email required (from request_service)

A buyer name + valid email are mandatory so the agent can reply.

Supply both.

listing_unclaimed (from request_service)

The listing has no claimed agent yet, so the enquiry can't be routed.

Try a claimed/verified listing; check back as agents onboard.

ignoring disallowed MAROCAIN_API_BASE

You set MAROCAIN_API_BASE to a non-HTTPS or non-allowlisted host.

Leave it unset (the default is correct).

Configuration

Env var

Default

Purpose

MAROCAIN_API_BASE

https://marocain.investments

Override the API origin (testing only; must be HTTPS + allowlisted).

MAROCAIN_TIMEOUT_MS

30000

Per-request upstream timeout.

  • Skills catalog: @hei33enberg/luxury-skills (npm) — the machine-readable capability catalog this server draws from.

  • Live API: https://marocain.investments/api/public/* · AEO manifest: /llms.txt.

Releasing

Publishing to npm is automated by a GitHub Action (publish-mcp) in the platform repo:

# bump the version, commit, push — the Action publishes @marocain/mcp-server
npm version patch        # or minor / major  (edits package.json)
git push --follow-tags

Local npm test runs the unit tests (CI runs them on Node 18/20/22); CI additionally runs the black-box MCP handshake smoke (node test/smoke.mjs) on Node 20.

License

MIT © marocain.investments

Available Tools

14 tools
get_gin_scoreB

The {GIN} coherent verdict for a listing: the Quality pillar (asset, compute_marocain_score), the Deal pillar (price-vs-AVM + momentum) and the one fused buy/hold/pass verdict. The authored number an investor can defend.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesListing id (UUID).

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It usefully details the output components (Quality, Deal, fused verdict), but it does not mention whether the operation is read-only, potential errors, or permissions required. It adds value in explaining the output structure but falls short of full transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, somewhat convoluted sentence with jargon and a placeholder (`{GIN}`, `compute_marocain_score`). It is not excessively long, but the structure could be clearer and more direct, detracting from its effectiveness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of an output schema, the description outlines the key return components, which is helpful. However, it omits details about the response format, value ranges, or error behavior. The tool's simplicity (one parameter) means the moderate completeness level is acceptable but not exemplary.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage for the single parameter `id`, describing it as a UUID listing ID. The description adds no additional meaning about the parameter, so the baseline of 3 applies since no compensation is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool provides a coherent GIN verdict for a listing, enumerating the Quality pillar, Deal pillar, and fused buy/hold/pass verdict. This makes the tool's function clear, though it lacks a direct verb and does not explicitly differentiate from sibling tools like `gin_ask` or `get_listing`.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance on when to use this tool compared to alternatives. The description only implies it is for obtaining a verdict, without any 'use this when' or 'instead of' direction, leaving the agent to infer the appropriate context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_listingA

Full detail for one listing by id: price (USD/MAD), AI scores, M-Value AVM, FCR/title trust, source provenance and the {GIN} pillars + verdict. Never returns the agent's phone.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesListing id (UUID).

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral disclosure burden. It explicitly states what is returned and, notably, what is never returned ('Never returns the agent's phone'). It doesn't mention error cases or side effects, but as a read-oriented tool the listing of contents and the negative guarantee add meaningful transparency beyond a generic 'get' description.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that packs a concrete list of return fields and an exclusion. Every clause adds value—no filler or repetition. It is front-loaded with the core purpose and then gives specifics efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with one parameter and no output schema, the description provides a thorough inventory of the response contents, which is the main contextual missing piece. It does not discuss error behavior or authentication, but that is a minor gap for this simple retrieval tool. Overall it gives the agent enough context to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes the only parameter (id as Listing UUID) with 100% coverage. The description does not add semantic detail beyond the schema, so the baseline of 3 applies. It does implicitly confirm that the id refers to a listing, but that is already in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool retrieves full detail for a single listing by id and enumerates the specific fields returned (price, AI scores, M-Value AVM, FCR/title trust, provenance, GIN pillars + verdict). It distinguishes from sibling search_listings by focusing on one listing by id, and from get_gin_score by including GIN pillars as part of a full detail set.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Full detail for one listing by id' makes it clear this is for getting a single listing's comprehensive record, implying use when you have a specific id rather than searching. It doesn't explicitly mention when not to use it or name alternatives, but the context is unambiguous enough for the agent to select it appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_marketA

Macro market facts for a city or national scope — median price, supply, momentum and the catalysts (WC2030, TGV) the {GIN} Deal pillar is benchmarked against.

ParametersJSON Schema
NameRequiredDescriptionDefault
scopeYesCity slug (e.g. marrakech) or 'morocco' for national.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses the type of data returned and the geographic scope, but does not mention data freshness, error cases, or read-only semantics. It adds useful context but lacks full behavioral transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense phrase that front-loads the tool's purpose and key data points. Every word contributes value, with no filler or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no annotations, no output schema), the description provides sufficient context by listing the data content and the benchmarking context. It does not include return format or error handling, but for a straightforward market-facts tool, this is adequately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage of the single parameter 'scope', including an example. The description adds the 'macro' context but does not provide additional parameter-level syntax or format details. Baseline 3 is appropriate given the high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the tool's function: providing macro market facts for a city or national scope. It lists concrete data points (median price, supply, momentum, catalysts) and mentions the GIN Deal pillar, distinguishing it from sibling tools like search_listings or get_gin_score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when macro market data is needed and mentions benchmarking for the GIN Deal pillar, but it does not explicitly state when to use this tool versus alternatives or provide any exclusions. No alternative tools are referenced.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gin_askA

Ask T{AI]GIN — the {GIN} agentic investment analyst — a one-shot natural-language question. It plans, searches the catalogue + authored guides, scores with the {GIN} pillars and answers grounded with citations. Use for open questions ('which Tangier district has the best rental upside?', 'why Morocco over Dubai?'). Never returns agent contact details.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesNatural-language question for the analyst.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses several behavioral traits: it is one-shot, plans, searches the catalogue and guides, scores with GIN pillars, and returns citations. It also states a clear negative behavior (does not return agent contact details). This is solid transparency, though it does not cover potential errors or edge cases.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact (roughly 40 words) and front-loaded with the core action ('Ask...'). Every sentence contributes: it defines the resource, explains the process, gives usage direction with examples, and states a key limitation. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no annotations or output schema, the description is largely complete. It explains what the tool does, how it works, and what it returns (an answer with citations). The only minor gap is that it does not mention what happens if the question is out of scope or unanswerable, but this is acceptable for a natural-language interface.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only describes 'q' as a natural-language question. The description expands on this by specifying that questions should be open-ended and provides concrete examples, which helps an agent formulate appropriate queries. This adds meaningful semantics beyond the schema's basic description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states this tool asks a one-shot natural-language question to an investment analyst. It specifies the resource (T{AI]GIN) and the action (ask), and distinguishes itself by focusing on open questions rather than structured lookups. Examples of open questions make the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use for open questions' and provides two example questions, giving clear context for when to invoke this tool. It also mentions a limitation ('Never returns agent contact details'), but does not explicitly name alternative tools for non-open questions, which leaves a slight gap in guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gin_deal_memoA

Generate a structured investor DEAL MEMO for one listing id: the {GIN} Quality + Deal verdict, M-Value AVM with value-vs-ask, gross yield, strengths, risks, district read and next steps. Honest (won't soften an overpriced verdict). Decision support, not a certified appraisal.

ParametersJSON Schema
NameRequiredDescriptionDefault
listing_idYesListing id (UUID).

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the safety and behavior burden. It discloses honesty ('won't soften an overpriced verdict'), the non-appraisal nature, and enumerates return sections. It does not explicitly state read-only or cover error cases, but for a generation tool this is strong disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with a compact list of contents followed by two short caveats. Every sentence earns its place with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema, the description enumerates the memo sections (GIN verdict, M-Value AVM, yield, strengths/risks, district read, next steps), making the return value clear. For a one-parameter tool, this provides complete operational context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents the single listing_id parameter with 100% coverage, so the description adds no additional parameter meaning beyond confirming 'one listing id'. This is the baseline for schema-covered parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb ('Generate') and resource ('structured investor DEAL MEMO') for one listing id, then enumerates the memo's sections. This clearly distinguishes it from sibling tools like get_listing or get_gin_score, which are raw data retrieval rather than synthesis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It is clear this tool is for generating an investor-focused memo for a single listing, and the 'Decision support, not a certified appraisal' phrase gives context on appropriate expectations. However, it does not explicitly name alternative tools or state when not to use them, so it falls just short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

listing_deriveB

AI-derived investor narrative for a listing — a one-paragraph thesis synthesising the {GIN} pillars, financial vision and location into a single decision memo.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLocale: en, fr, es, de, pl, ar (default en).
listing_idYesListing id (UUID).

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the burden of behavioral disclosure. It states the output is an AI-derived narrative, implying a generative, likely read-only operation, but it does not disclose whether the tool mutates data, requires special permissions, or has any side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense sentence that front-loads the core purpose. Every element contributes to understanding the tool's function and output, with no redundant or filler content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains the output shape (one-paragraph thesis memo) and the key inputs, which is adequate for a simple tool. However, the lack of usage guidance and potential overlap with gin_deal_memo leaves the context incomplete for an agent to confidently select this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema sufficiently documents the lang and listing_id parameters. The description adds context about what the tool does with the listing (synthesizing a narrative) but does not add specific format or usage details beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates an AI-derived investor narrative for a listing, specifying it as a one-paragraph thesis synthesizing GIN pillars, financial vision, and location. It is distinct from data retrieval tools like get_listing or get_gin_score, though it could be confused with the sibling gin_deal_memo without explicit differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool versus alternatives. Sibling names such as gin_deal_memo and gin_ask suggest overlapping purposes, but the description offers no selection criteria, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_servicesA

List the platform's transactable services + EUR prices — for BUYERS (AI staging, viral content, refundable reservation, bank-honored appraiser, on-site visitation, the €199 AI business-model plan, plus request-only lawyer / financing / bespoke commercialization) and for AGENTS/sellers (listing boost, photo relight). Returns each product_type + its variant ids + price, which order_service needs. NOTE: card checkout for instant products may be temporarily unavailable while the payment processor is being reconnected; request-based services and buyer enquiries work regardless.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds valuable context about the temporary unavailability of card checkout for instant products, and states that request-based services remain operational. It also discloses the return structure. This goes beyond what the empty schema provides, though it does not mention rate limits or authorization.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense and front-loaded with the main purpose. The lists of services are detailed but necessary for clarity. The note about payment processor unavailability is important but could be considered an addendum. Overall, it is structured effectively and every sentence serves a purpose, though it is slightly verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema and no annotations, the description is remarkably complete. It specifies the tool's purpose, the categories of services, the return value's structure, and a temporary operational caveat. For a zero-parameter list tool, this provides sufficient context for an agent to select and invoke it appropriately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the baseline is 4. The description adds meaning by enumerating the product types and explaining that the returned product_type/variant ids are required for order_service. Since there is no schema to describe parameters, the description is the sole source of semantic information, and it does that well.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and resource ('transactable services + EUR prices'), and further clarifies the audience (buyers vs agents) and the exact output (product_type, variant ids, price). It clearly distinguishes this from sibling tools like order_service and request_service by stating that the returned data is what order_service needs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides context for when to use the tool: it lists the services and prices, and explicitly states that the output is needed for order_service. It also notes that request-based services and buyer enquiries work regardless of payment processor issues, implying a use case for request_service. However, it does not explicitly say 'use this when you need prices' or provide exclusions relative to other list/search tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

order_serviceA

Place an order for any platform service (a product_type + variant from list_services). Instant products return a Stripe checkout_url to complete payment on-platform; request-only products (lawyer, financing, commercialization, contact) return a tracked order_id with no upfront charge. Requires the buyer's email. NEVER returns agent/seller contact. For a plain buyer enquiry to a listing's agent, prefer request_service.

ParametersJSON Schema
NameRequiredDescriptionDefault
messageNoOptional note / scope (request-only products).
variantYesThe variant id for that product (from list_services), e.g. single / pack / deposit / essential / standard / premier.
buyer_nameNoBuyer's name.
listing_idNoListing id (UUID) the service applies to.
buyer_emailYesBuyer's email (required).
buyer_phoneNoOptional buyer phone.
product_typeYesFrom list_services, e.g. staging, viral, reservation, appraiser, visaitation, commercialization_plan, lawyer, financing, listing_boost, photo_relight.

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses response types (checkout_url vs order_id), billing behavior (no upfront charge for request-only), required email, and a hard restriction ('NEVER returns agent/seller contact'). Minor gaps: no mention of error cases or side effects like order status tracking.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with purpose, then behavior, then explicit alternative. Every sentence adds value and there is zero fluff or repetition of schema field names.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers the two product flows, payment mechanism, required fields, and the distinction from request_service. Slightly incomplete regarding what happens on failed payment or invalid product_type, but for a moderate-complexity tool with no output schema, it gives the agent enough to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the bar is lower, but the description adds relational meaning: product_type + variant come from list_services, and the message field is specifically for request-only products. It clarifies that buyer_email is a hard requirement and explains how parameters map to the two different order flows.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb+resource: 'Place an order for any platform service' with explicit product_type + variant. It clearly distinguishes from sibling request_service by contrasting 'plain buyer enquiry' vs actual order, and separates instant vs request-only products.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use: ordering a service, and when-not-to: 'For a plain buyer enquiry to a listing's agent, prefer request_service.' Also explains the two product categories and their different flows, giving the agent clear decision criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

rent_affordabilityA

How much monthly rent a given net income comfortably supports. Uses the SAME rule-of-thumb as marocain.investments/finance (rent ≤ 33% of net monthly income) so the answer never disagrees with the website. Give income in MAD (net_monthly_income_mad) or USD (net_monthly_income_usd). Returns the comfortable rent ceiling in MAD and USD.

ParametersJSON Schema
NameRequiredDescriptionDefault
net_monthly_income_madNoNet monthly income in MAD.
net_monthly_income_usdNoNet monthly income in USD (converted to MAD ×10; ignored if the MAD field is set).

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

As a pure calculation tool, it implies no side effects or external calls. The description details the output (rent ceiling in MAD and USD) and the rule applied. Yet, it does not explicitly state that it's read-only or clarify potential edge cases (e.g., both inputs provided), though these are partially addressed in the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, consisting of three clear sentences: purpose, rule, and input/output specification. It contains no redundancy or irrelevant information, making it efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description adequately explains the return value (comfortable rent ceiling in both MAD and USD). It covers the calculation rule and inputs. It could be more explicit about the output format or error handling, but overall it provides sufficient context for an agent to understand the tool's behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides descriptions for both parameters (net_monthly_income_mad and net_monthly_income_usd), including the precedence rule. The tool description adds the 33% rule, which is not in the schema, but it does not significantly enhance understanding beyond what the schema already covers, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: computing a comfortable rent ceiling based on net income using a 33% rule. It distinguishes itself from sibling tools like rent_vs_buy (comparison) and search_rentals (listing search) by focusing solely on affordability calculation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit input instructions (provide income in MAD or USD) and mentions the consistency with marocain.investments/finance, which implies when to use it for matching that website. However, it does not explicitly mention alternatives or when not to use this tool, so it falls short of full guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

rent_vs_buyA

Compare the monthly cost of BUYING a property vs RENTING it. Uses the SAME mortgage engine as marocain.investments/finance (standard annuity payment on the loan after down payment) — principal + interest only, excluding insurance/fees/taxes/maintenance/appreciation. Defaults mirror the site: 30% down, 20-year term, 5.2% rate. Returns the monthly buy payment, the rent, and the monthly difference (buy − rent).

ParametersJSON Schema
NameRequiredDescriptionDefault
down_pctNoDown payment %, default 30 (matches /finance).
price_madYesProperty purchase price in MAD.
term_yearsNoMortgage term in years, default 20.
annual_rate_pctNoAnnual mortgage rate %, default 5.2 (the site's representative rate).
monthly_rent_madYesComparable monthly rent in MAD.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It explains the calculation methodology (standard annuity, principal+interest only) and lists exclusions (insurance/fees/taxes/maintenance/appreciation). It also states default values, which is useful for users. This is more transparent than many tools.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with 3 sentences that are information-dense. It front-loads the purpose, then provides methodological context, defaults, and output. Every sentence serves a purpose with no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there is no output schema and annotations are missing, the description does an excellent job of covering what the tool does, how it works, what it excludes, default parameters, and what it returns. This is sufficient for most users to decide whether to use it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and descriptions already include defaults and units. The description adds context about the defaults matching the site, and explains how each parameter fits into the calculation. It doesn't repeat schema details, but the schema already provides adequate semantics, so a score of 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: comparing monthly cost of buying vs renting. It specifies the exact inputs (price, rent), the computation (mortgage payment), and the output (monthly buy payment, rent, difference). It distinguishes itself from siblings like rent_affordability by focusing on cost comparison rather than affordability.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides usage context by noting that it uses the same engine as the /finance page, which implies it's for general cost comparison. However, it doesn't explicitly mention when not to use it (e.g., when taxes or maintenance should be included). It does indicate that it excludes certain factors, which helps users understand its limitations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

request_serviceA

Submit a buyer ENQUIRY (or request a viewing / valuation / financing / renovation / legal help) for a listing. This is the ONLY conversion path: it routes the enquiry through marocain.investments to the listing's verified agent and returns a confirmation reference — it NEVER returns the agent's contact (the platform intermediates all contact). Works for listings that have a claimed, verified agent; for not-yet-claimed scraped listings it returns a clear note instead of routing. Requires the buyer's name + email so the agent can follow up.

ParametersJSON Schema
NameRequiredDescriptionDefault
messageNoOptional message — what they're looking for / questions.
buyer_nameYesThe enquiring buyer's name.
listing_idYesListing id (UUID) to enquire about.
buyer_emailYesThe buyer's email for the agent to reply to.
buyer_phoneNoOptional buyer phone.
service_interestNoOptional: viewing, valuation, financing, renovation, legal, etc.

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully discloses key behaviors: it never returns the agent's contact, the platform intermediates, and for unclaimed listings it returns a note. It also mentions the return of a confirmation reference, covering what would otherwise be unknown.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact yet information-dense. Every sentence adds a necessary behavioral or usage detail, and the key points are front-loaded (purpose, uniqueness, contact privacy). No fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description explains return behavior (confirmation reference vs. note for unclaimed). It covers conditions, required fields, and the platform's role. The tool is not overly complex, and all relevant context is provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds a little extra (why buyer_name and buyer_email are required, examples for service_interest) but these are already present in the schema descriptions. It does not introduce new parameter semantics beyond the structured data.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb-resource pair ('Submit a buyer ENQUIRY') and clarifies the multi-purpose nature (viewing, valuation, etc.). It distinguishes itself from siblings by stating it is 'the ONLY conversion path' and that it routes to the verified agent.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: for listings with a claimed, verified agent; and what happens otherwise (returns a clear note instead of routing). It also frames itself as the sole conversion path, clearly implying that other tools are not for this purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_listingsA

Search AI-graded Moroccan luxury listings by city, typology, price, rooms and a free-text query. Returns structured listings with prices and {GIN} scores. Never returns agent contact details.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree-text query.
cityNoCity name, e.g. Marrakech, Casablanca, Tangier.
limitNoMax results (default 20, max 50).
typologyNoProperty type, e.g. villa, apartment, riad, land.
min_roomsNoMinimum number of rooms.
max_price_usdNoMaximum asking price in USD.
min_price_usdNoMinimum asking price in USD.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It proactively states that results include {GIN} scores and that agent contact details are never returned, which is a meaningful privacy constraint beyond the schema. It does not disclose pagination/sorting behavior, but the core safety and output traits are covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is composed of two terse, information-dense sentences. The first immediately names the tool's action and scope; the second delivers the return format and a key constraint. No filler or redundancy exists, and the most important action verb is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (7 optional parameters, no output schema, no annotations), the description adequately orients an agent: it defines the domain, the searchable fields, and the return payload (prices and GIN scores). It falls short of explaining how limit and pagination behave, and does not clarify how results are ranked, which would be useful for an agent choosing between this and semantic_search. Still, for a search tool, it is largely complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% coverage with descriptive comments for all 7 parameters. The description adds minimal parameter-level value beyond restating the filter dimensions (city, typology, price, rooms) already explicitly listed in the schema. It does not introduce new meaning like default behavior or parameter interdependencies, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with the verb 'Search' and clearly specifies the resource ('AI-graded Moroccan luxury listings') plus the search dimensions (city, typology, price, rooms, free-text query). This distinguishes it from sibling tools like get_listing (single listing lookup) and get_gin_score (score-specific), making the tool's role unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description conveys clear usage context: it is a listing search tool with structured filters and free-text search. However, it does not explicitly mention when to prefer this over semantic_search or get_listing, nor does it note exclusions (e.g., 'use semantic_search for pure relevance ranking'). The intent is clear enough for an agent to select it for listing discovery.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_rentalsA

Search AI-graded Moroccan long-let RENTAL listings (residential / commercial / student) by city, typology, monthly rent band and tier. Rent is in MAD/month (rent_usd_month provided too). Returns structured rentals with {GIN} scores. Calls the same public, PII-scrubbed rental surface the website uses — NEVER returns landlord/agency contact. Note: unlike sale search there is no server-side rooms or free-text filter on the public rental surface (rooms is returned per listing); filter by city / typology / rent band / tier.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity name, e.g. Casablanca, Marrakech, Tangier, Rabat, Agadir.
sortNorecent (default), rent_asc, rent_desc, yield_desc, score_desc.
tierNoRental tier: all (default), residential, commercial, student.
limitNoMax results (default 24, max 60).
offsetNoPagination offset (default 0).
typologyNoRental type: apartment, villa, riad, office, commercial.
max_rent_madNoMaximum monthly rent in MAD.
max_rent_usdNoMaximum monthly rent in USD (converted to MAD ×10; ignored if max_rent_mad is set).
min_rent_madNoMinimum monthly rent in MAD.
min_rent_usdNoMinimum monthly rent in USD (converted to MAD ×10; ignored if min_rent_mad is set).

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that the tool returns PII-scrubbed data, never returns landlord/agency contacts, and uses a public surface. It also notes the limitation on filtering (no rooms/free-text server-side). This is strong transparency, though it could mention pagination behavior or rate limits, but given no annotations, this is quite robust.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph but front-loaded with the essential purpose and filters. It's concise yet informative, covering key aspects in a few sentences. Minor inefficiency: repeating 'rental' multiple times and the parenthetical about rent_usd_month could be streamlined, but overall it's well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 10 optional parameters and no output schema, the description provides a good overview of what the tool does and its constraints (no rooms/free-text filter, PII-scrubbed). It tells the user what to expect in returns (structured rentals with GIN scores). Could be more complete by specifying the expected output format or default behavior more explicitly, but it's fairly complete for a search tool with generous annotations coverage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the description doesn't need to explain each parameter deeply. However, it adds key semantic context: 'tier' maps to residential/commercial/student, rent is in MAD with USD option, and the note about max_rent_usd being ignored if max_rent_mad is set. This adds value beyond the schema's basic descriptions, but could have elaborated on 'typology' examples or sort semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches Moroccan long-let rental listings with specific filters (city, typology, rent band, tier) and highlights key attributes like AI-graded scores and MAD currency. It differentiates from sibling 'search_listings' by focusing specifically on rentals and noting the absence of server-side rooms/free-text filtering.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly mentions what the tool does and what it returns, and contrasts with sales search (no rooms/free-text filter). It doesn't explicitly name alternative tools for different use cases, but provides clear context for when this tool is appropriate (rental search) versus others. Could be improved by referencing sibling tools like 'search_listings' for broader property search.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv0.1.10
    • Addedrent_affordability
    • Addedrent_vs_buy
    • Addedsearch_rentals
  2. 11 tool updatesv0.1.9
    • First observedget_gin_score
    • First observedget_listing
    • First observedget_market
    • First observedgin_ask
    • First observedgin_deal_memo
    • First observedlist_services
    • First observedlisting_derive
    • First observedorder_service
    • First observedrequest_service
    • First observedsearch_listings
    • First observedsemantic_search

TDQS

A4/5.0

Scored across 14 tools

Disambiguation4/5

Tools are mostly distinct: search vs. get vs. generate vs. service actions are clear. The main potential confusion is among the listing-centric tools (get_listing, get_gin_score, gin_deal_memo, listing_derive) which all operate on a single listing but produce different outputs. Descriptions do clarify the differences, but an agent might still hesitate when choosing between them.

Naming Consistency4/5

Names mostly follow verb_noun pattern (search_listings, get_listing, list_services), but a few like listing_derive, gin_ask, gin_deal_memo break the pattern with noun_verb. Still, all names are descriptive and use a consistent snake_case style, so the deviation is minor.

Tool Count5/5

14 tools is within the ideal range (3-15). Each tool covers a distinct aspect of the real estate investment workflow: search, detail, score, memo, market data, services, and financial calculators. No tool feels redundant.

Completeness5/5

The surface covers the full investor journey: discover (search), evaluate (get_listing, get_gin_score, gin_deal_memo, listing_derive), understand market (get_market), calculate (rent_affordability, rent_vs_buy), and act (request_service, order_service, list_services). Also includes semantic search and an agentic Q&A. No obvious gaps for the stated purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    An MCP server for accessing the Fotocasa1 API to search real estate listings and retrieve detailed property information in Spain. It supports location suggestions, property filtering by type and price, and fetching specific property details.
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for querying Israeli government real estate data, enabling property deal searches, market trend analysis, and address retrieval.
    4
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for the Stream.estate French real estate API. Search properties, get market statistics, manage saved searches with webhook notifications.
    13
    23
    2
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for generating PDF reports on real estate properties. Supports location analysis, market reports, and project summaries.
    Mozilla Public 2.0

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hei33enberg/Marocain-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server