Skip to main content
Glama

BrokerIA Imoveis

Server Details

Search Brazilian real estate, simulate financing, qualify leads, schedule visits.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
raklapimenta/brokeria-mcp-server
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 8 of 8 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool addresses a distinct step in the real estate journey: financial pre-qualification, property search, proximity search, detail viewing, comparison, visit scheduling, payment estimation, and neighborhood analytics. No two tools have overlapping responsibilities; even the two estimation tools focus on different questions (affordable price vs. monthly payment).

Naming Consistency3/5

Most tools follow a verb_noun pattern like buscar_imoveis and agendar_visita, but others are noun-based (detalhes_imovel, info_bairro) and one mixes English with Portuguese (capacidade_pre_search). The consistent 'brokeria' prefix mitigates this, but the varied structures and language mixing are noticeable.

Tool Count5/5

At 8 tools, the set is appropriately scoped for a real estate assistant, covering both discovery (search, nearby) and action (scheduling) without redundancy. Each tool has a clear role, and there is no excess or obvious bloat.

Completeness5/5

The tool set delivers a complete workflow: budgeting (capacidade_pre_search), searching (buscar_imoveis/imoveis_proximos), evaluating (detalhes_imovel/comparar_imoveis), contextualizing (info_bairro), and acting (agendar_visita). It also covers financing education with estimar_parcela_educacional. Missing features like listing purchases or broker contact are out of scope for a buyer-facing assistant.

Available Tools

8 tools
brokeria_agendar_visitaRequest a property visitAInspect

Registra uma SOLICITACAO de visita a um imovel. Requer id do imovel, nome do visitante, telefone ou email, data preferida e periodo (manha/tarde/noite). A solicitacao e enviada pra imobiliaria responsavel, que entra em contato pra confirmar. Nao confirma visita nem reserva horario por conta propria.

ParametersJSON Schema
NameRequiredDescriptionDefault
notesNoObservacoes opcionais
contactYesPelo menos um meio de contato obrigatorio (phone ou email)
property_idYesUUID do imovel (retornado pela busca)
visitor_nameYesNome completo do visitante
preferred_dateYesData preferida YYYY-MM-DD
preferred_periodYesPeriodo do dia
Behavior4/5

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

Annotations indicate readOnlyHint=false and openWorldHint=true, and the description adds crucial behavioral details: the request is sent to the agency and does NOT confirm or book anything on its own. This goes beyond the annotations by explaining the real-world flow and limitation, which is valuable for correct invocation.

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 three sentences, front-loaded with the primary action, and every sentence adds value: purpose, required fields, and behavioral limitation. No redundant filler or off-topic content.

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 6 parameters, nested contact object, and no output schema, the description adequately explains the process, required inputs, and post-submission behavior. It could have mentioned what the response returns, but the absence of an output schema makes that less critical. The description is sufficiently complete for an action-oriented 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 coverage is 100%, so the schema fully documents parameters and the enum. The description recaps the required fields ('Requer id do imovel, nome do visitante, telefone ou email, data preferida e periodo') but adds no new semantic detail beyond the schema. Baseline 3 applies because the schema handles the heavy lifting.

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 'Registra uma SOLICITACAO de visita a um imovel' (registers a visit request to a property), using a specific verb and resource. It distinguishes from sibling search/info tools by emphasizing the request action, and the caveat 'Nao confirma visita nem reserva horario por conta propria' clarifies its scope.

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 implicitly defines when to use the tool (to register a visit request) and states the required inputs. It does not explicitly mention alternatives or exclusions, but siblings are all read-only search tools, making the use case clear. The mention that the agency contacts to confirm further guides user expectations.

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

brokeria_buscar_imoveisSearch Brazilian real estate listingsA
Read-only
Inspect

Busca imoveis residenciais no catalogo de imobiliarias parceiras da BrokerIA no Brasil. Filtra por cidade, bairro, tipo (casa, apartamento, terreno), faixa de preco, quartos, vagas e area. Retorna lista com foto, endereco aproximado, preco anunciado e id pra consulta de detalhes.

ParametersJSON Schema
NameRequiredDescriptionDefault
tipoNo
limitNo
bairroNoBairro
cidadeNoCidade. Ex: "Campinas"
offsetNo
area_minNoArea minima em m2
descricaoYesDescricao em linguagem natural do imovel desejado
vagas_minNoMinimo de vagas
valor_maxNoValor maximo em reais
valor_minNoValor minimo em reais
finalidadeNoModalidade comercial: venda, locacao ou ambos. Permuta e condicao da venda.
imobiliariaNoSlug da imobiliaria. Ex: "kasamais"
quartos_maxNoMaximo de quartos
quartos_minNoMinimo de quartos
Behavior4/5

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

Annotations already declare read-only and non-destructive intent, lowering the bar. Description adds that results include photo, approximate address, price, and ID, plus the list-return behavior. Does not discuss pagination or response structure, but adds meaningful context beyond annotations.

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?

Two sentences, front-loaded with the core action, filters, and return fields. No wasted words.

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

Completeness2/5

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

With 14 parameters, no output schema, and a required natural-language parameter, a short list of filters is insufficient. It does not explain pagination, the role of 'descricao', or the non-residential types allowed in the schema. The description is adequate for a simple filter tool but not for this complexity.

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

Parameters2/5

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

Schema coverage is 79%, but description omits the required 'descricao' parameter entirely and fails to mention other params like finalidade, imobiliaria, limit/offset. Although it lists common filters, it does not clarify that the search is driven by a natural-language description, which is essential. The description also omits enum options beyond casa/apartamento/terreno.

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?

Description clearly states it searches residential real estate listings from partner agencies in Brazil. It lists filters and return fields, distinguishing it from sibling tools like detalhes_imovel (details) by specifying it returns a list with IDs for detail lookup.

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?

Implies usage for property search with filters, but does not explicitly state when to prefer this over sibling tools like imoveis_proximos or comparar_imoveis. No exclusions or alternative recommendations.

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

brokeria_comparar_imoveisCompare properties side by sideA
Read-only
Inspect

Compara de 2 a 4 imoveis lado a lado a partir dos ids retornados pelas buscas. Monta uma tabela com preco anunciado, area, quartos, vagas, bairro, imobiliaria responsavel e preco por metro quadrado. Util pra visualizar trade-offs objetivos. Nao indica qual e o "melhor" — a decisao e do usuario.

ParametersJSON Schema
NameRequiredDescriptionDefault
imovel_idsYesLista de 2 a 4 UUIDs de imoveis retornados pela busca
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false; the description adds behavioral details by explaining it builds a table with specific columns and does not rank or judge. This is consistent with annotations and gives context about the tool's output and limitations.

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 three concise sentences: the first defines the action and constraint, the second lists the output content, and the third explains the use case and limitation. No redundant words.

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?

For a simple read-only tool with one parameter and no output schema, the description is fully complete. It explains what the tool does, what the table contains, and its purpose, so the agent knows what to expect.

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 schema already provides full coverage for the single parameter, including min/max. The description adds meaning by reinforcing the 2-4 item limit and clarifying the IDs come from previous searches, which is not 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 the tool compares 2 to 4 properties side-by-side from IDs returned by searches, and lists the specific comparison fields (price, area, bedrooms, etc.). This makes it distinct from siblings like 'brokeria_buscar_imoveis' and 'brokeria_detalhes_imovel'.

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 specifies this tool is used after a search ('a partir dos ids retornados pelas buscas') and for visualizing objective trade-offs. It also notes it does not indicate which property is best, implying the agent should not delegate decisions to the tool, though it doesn't explicitly name alternative tools.

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

brokeria_detalhes_imovelGet details of a specific propertyA
Read-only
Inspect

Retorna os detalhes publicos de um imovel especifico pelo id retornado por uma busca. Inclui fotos, descricao, caracteristicas (quartos, suites, vagas, area), endereco aproximado, preco anunciado e imobiliaria responsavel. Nao calcula financiamento nem avalia elegibilidade em programa de credito.

ParametersJSON Schema
NameRequiredDescriptionDefault
imovel_idYesUUID do imovel
Behavior4/5

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

Annotations already mark this as read-only and non-destructive. The description adds that the address is approximate, which is a behavioral caveat beyond annotations, and clarifies it does not compute financing or eligibility. This adds useful context without contradiction.

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 two sentences: the first states the core action, the second lists contents and exclusions. It is concise, front-loaded, and contains 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?

With one simple parameter and no output schema, the description lists the expected return fields and clearly states limitations. It gives enough context for the agent to use the tool correctly and set expectations.

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 schema covers the parameter fully with 'UUID do imovel' at 100% coverage. The description adds that the ID comes from a search result, providing provenance that helps the agent understand where to obtain the value. This goes beyond schema-only info.

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 returns public details for a specific property using the ID from a search, and lists the included fields (photos, description, features, approximate address, price, agency). This distinguishes it from sibling tools like buscar_imoveis or comparar_imoveis.

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 implies when to use it by saying 'pelo id retornado por uma busca', indicating a prior search step. It also explicitly states what it does not do (calculate financing or assess credit eligibility), providing a when-not. However, it does not name alternative tools directly.

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

brokeria_estimar_parcela_educacionalEducational monthly payment range estimatorA
Read-only
Inspect

Apresenta uma estimativa educacional, em intervalo (minimo e maximo), do valor de parcela mensal de referencia pra um imovel residencial no Brasil, calculada a partir de parametros medios publicos (taxa de juros media divulgada, prazo informado, entrada informada). Nao e cotacao, nao e pre-aprovacao, nao consulta bureau de credito, nao classifica em programa habitacional. NAO substitui analise de correspondente bancario autorizado pelo Banco Central do Brasil. [EN] Educational reference range (min-max) for a monthly real estate payment in Brazil, based on public average parameters. Not a quote, not a pre-approval, no credit bureau check. Does NOT substitute analysis by a Bacen-authorized banking correspondent.

ParametersJSON Schema
NameRequiredDescriptionDefault
idadeYesIdade do proponente principal
cidadeNo
estadoNoSP
dependentesNo
entrada_brlNo
prazo_mesesNo
tipo_imovelNonovo
valor_fgts_brlNoValor de FGTS a usar (em reais, nao boolean)
primeiro_imovelYesSe e o primeiro imovel da familia
valor_imovel_brlYesValor do imovel em reais (max R$ 5 milhoes)
renda_familiar_brlYesRenda familiar mensal em reais (max R$ 100 mil)
fgts_acima_36_mesesNo
sistema_amortizacaoNosac
modalidade_indexadorNotr_plus
Behavior5/5

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

The description goes beyond the readOnlyHint annotation by explaining the estimate is based on public average parameters (interest rate, term, down payment) and explicitly states limitations: 'NAO substitui analise de correspondente bancario autorizado pelo Banco Central do Brasil'. This adds behavioral context about what the tool does not do, which is not present in annotations.

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 front-loaded with the main purpose and then lists limitations. It includes both Portuguese and English versions, which is redundant but not excessively verbose. The structure is clear, though the EN summary repeats the same content, adding length without new information.

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?

For a tool with 14 parameters and no output schema, the description is only partially complete. It explains the output is a min-max range but does not specify the return format, units, or how parameters influence the calculation. It also does not address edge cases or required parameter semantics. The educational and non-binding context is useful, but more detail on output and parameter interactions is needed.

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

Parameters2/5

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

With schema description coverage at only 36%, the description needs to compensate, but it only mentions 'taxa de juros media divulgada, prazo informado, entrada informada'. It does not explain the many other parameters like cidade, estado, dependentes, tipo_imovel, sistema_amortizacao, or modalidade_indexador. The description adds minimal meaning beyond the schema, leaving most parameters underspecified.

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 'Apresenta uma estimativa educacional, em intervalo (minimo e maximo), do valor de parcela mensal de referencia pra um imovel residencial no Brasil'. This specifies the verb (apresenta), the resource (monthly payment range for a residential property), and the scope (Brazil). It also distinguishes from sibling tools by clarifying it is an estimator, not a search/scheduling tool.

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 clear when-not-to-use guidance: 'Nao e cotacao, nao e pre-aprovacao, nao consulta bureau de credito, nao classifica em programa habitacional'. This tells the agent this tool is only for educational estimates, not for actual quotes or pre-approvals. However, it does not explicitly name alternative tools to use instead, so it lacks a full 'use X instead' instruction.

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

brokeria_imoveis_proximosFind properties near a locationA
Read-only
Inspect

Lista imoveis proximos a um endereco, CEP ou coordenada geografica de referencia. Retorna ate 20 imoveis ordenados por distancia em linha reta, com foto, preco anunciado, caracteristicas basicas e distancia em km. Util pra usuarios que priorizam morar perto de um local especifico (trabalho, escola).

ParametersJSON Schema
NameRequiredDescriptionDefault
latNoLatitude (opcional, alternativa a referencia)
lngNoLongitude (opcional, alternativa a referencia)
limitNo
raio_kmNoRaio de busca em km (padrao 5)
referenciaNoEndereco, CEP, nome de bairro ou ponto de referencia (ex: "Av Paulista 1578", "13084-060")
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description goes beyond by disclosing the return limit (up to 20), ordering by straight-line distance, and included fields (photo, price, basic characteristics, distance in km). This adds valuable behavioral context beyond the annotations.

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 extremely concise: two sentences that cover purpose, output details, and a use case. There is no redundancy or filler, and it is front-loaded with the primary action.

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 read-only tool with 5 optional parameters and no output schema, the description is quite complete: it specifies the result count, ordering, and key returned fields. It does not mention pagination or error handling, but those are not critical for this simple use case. The sibling context is not explicitly addressed, but the purpose is clear enough.

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 high (80%), so the schema already documents most parameters. The description mentions 'endereco, CEP ou coordenada geografica' which maps to 'referencia' and lat/lng, and 'ate 20' which implies the limit parameter, but it does not add substantial new meaning beyond the schema. Baseline of 3 is appropriate since the schema carries the weight.

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 it lists properties near an address, CEP, or geographic coordinates, with a specific verb ('Lista') and resource. It distinguishes itself from the sibling 'brokeria_buscar_imoveis' by emphasizing proximity to a specific location, making the purpose specific and 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?

It provides clear use context: 'Util pra usuarios que priorizam morar perto de um local especifico (trabalho, escola).' This implies when to use it (location-based search) but does not explicitly name alternatives or exclusions. It lacks a direct comparison to sibling tools, but the context is clear enough for selection.

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

brokeria_info_bairroGet neighborhood / city stats from the partner catalogA
Read-only
Inspect

Retorna estatisticas agregadas do catalogo de imobiliarias parceiras da BrokerIA para uma cidade (ou cidade+bairro): total de imoveis disponiveis, precos em percentis (25/50/75), distribuicao por tipo e por numero de quartos, quantidade de imobiliarias parceiras atuantes na regiao. Util pra orientar o usuario sobre faixa de preco tipica e oferta antes de uma busca.

ParametersJSON Schema
NameRequiredDescriptionDefault
bairroNoNome do bairro (opcional). Se omitido, retorna stats da cidade inteira.
cidadeYesNome da cidade (ex: "Joao Pessoa")
Behavior3/5

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

As annotations já declaram readOnlyHint=true e destructiveHint=false, e a descrição é consistente com uma operação de leitura. Ela acrescenta a fonte de dados (catalogo de parceiras) e o tipo de agregação, mas não revela possíveis limitações como autenticação, rate limits ou atualização dos dados. Como as annotations cobrem o perfil de segurança, a descrição entrega valor moderado.

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?

Uma frase densa e informativa, que começa com o verbo principal e lista métricas e uso. Não há palavras redundantes, embora seja longa e poderia ser dividida em duas frases para maior legibilidade. A estrutura é aceitável para a complexidade do conteúdo.

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?

A descrição detalha o conteúdo do retorno (total, percentis, distribuição por tipo e quartos, nº de imobiliárias) e a motivação de uso, suficiente para um tool sem output schema. Não menciona formato de resposta, mas isso não é essencial para uma ferramenta de estatísticas.

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?

O schema cobre 100% dos parâmetros, com descrições detalhadas: 'cidade' inclui exemplo e 'bairro' é opcional explicando que a omissão retorna stats da cidade inteira. A descrição da tool apenas repete a ideia de cidade ou cidade+bairro, sem acrescentar nova semântica além do 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?

A descrição especifica o verbo 'Retorna', o recurso (catalogo de imobiliarias parceiras da BrokerIA) e o escopo (cidade ou cidade+bairro), listando estatísticas concretas como total de imóveis, percentis e distribuições. Diferencia-se claramente de ferramentas irmãs como brokeria_buscar_imoveis ao focar em dados agregados em vez de listagens de imóveis.

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?

Indica explicitamente quando usar: 'Util pra orientar o usuario sobre faixa de preco tipica e oferta antes de uma busca'. Não menciona quando não usar nem alternativas, mas o contexto de uso pré-busca é claro e suficiente para diferenciar de outras ferramentas.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    -
    maintenance
    Enables real estate property searches with location and criteria filtering, plus comprehensive mortgage calculations including monthly payments and affordability analysis. Currently uses mock data for property searches but provides full mortgage calculation functionality.
  • F
    license
    -
    quality
    C
    maintenance
    MCP server for querying real estate agents registered with CRECI-SP. Enables searching by name, CRECI number, city, or status, retrieving agent details, and getting statistics.
  • A
    license
    -
    quality
    B
    maintenance
    Enables structured real estate workflows including property search, agent/client management, market intelligence, mortgage calculations, valuation, investment analysis, and document ingestion, with offline-first capabilities and optional live data integrations.
    AGPL 3.0
  • -
    license
    -
    quality
    -
    maintenance
    Enables searching and filtering real estate properties in France through the Melo API. Supports comprehensive property searches with filters for price, surface area, location, and property type for both sales and rentals.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.