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.
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.
Tool Definition Quality
Average 4.2/5 across 8 of 8 tools scored.
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).
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.
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.
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 toolsbrokeria_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.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Observacoes opcionais | |
| contact | Yes | Pelo menos um meio de contato obrigatorio (phone ou email) | |
| property_id | Yes | UUID do imovel (retornado pela busca) | |
| visitor_name | Yes | Nome completo do visitante | |
| preferred_date | Yes | Data preferida YYYY-MM-DD | |
| preferred_period | Yes | Periodo do dia |
Tool Definition Quality
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.
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.
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.
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.
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.
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 listingsARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| tipo | No | ||
| limit | No | ||
| bairro | No | Bairro | |
| cidade | No | Cidade. Ex: "Campinas" | |
| offset | No | ||
| area_min | No | Area minima em m2 | |
| descricao | Yes | Descricao em linguagem natural do imovel desejado | |
| vagas_min | No | Minimo de vagas | |
| valor_max | No | Valor maximo em reais | |
| valor_min | No | Valor minimo em reais | |
| finalidade | No | Modalidade comercial: venda, locacao ou ambos. Permuta e condicao da venda. | |
| imobiliaria | No | Slug da imobiliaria. Ex: "kasamais" | |
| quartos_max | No | Maximo de quartos | |
| quartos_min | No | Minimo de quartos |
Tool Definition Quality
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.
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.
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.
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.
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.
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_capacidade_pre_searchEstimate purchasing capacity (educational, pre-search)ARead-onlyInspect
Estima um intervalo educacional de valor de imovel que poderia caber na renda mensal informada (criterio de comprometimento medio publico ~30%). NAO e uma cotacao, NAO e uma pre-aprovacao, NAO consulta seu historico de credito, NAO determina aprovacao. Opcionalmente conta quantos imoveis do catalogo BrokerIA cabem no intervalo na cidade informada. Use ANTES de buscar imoveis para ajudar o usuario a definir uma faixa de preco realista.
| Name | Required | Description | Default |
|---|---|---|---|
| idade | Yes | ||
| cidade | No | Cidade de interesse (opcional). Se informada, conta quantos imoveis do catalogo cabem no intervalo. | |
| dependentes | No | ||
| entrada_brl | Yes | Entrada disponivel em reais | |
| tipo_imovel | No | novo | |
| valor_fgts_brl | No | ||
| primeiro_imovel | Yes | ||
| renda_familiar_brl | Yes | Renda familiar mensal em reais (max R$ 100 mil) | |
| fgts_acima_36_meses | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and non-destructive; the description adds meaningful context: the estimate is educational only, does not check credit history, does not determine approval, and optionally counts catalog matches. This goes beyond the annotation hints 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences front-load the primary function, followed by clear limitations and usage guidance. Every sentence is informative and there is no redundant text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, timing, limitations, and optional behavior, and the output shape is implied as an interval and a count. Without an output schema, a bit more detail on return format could help, but it is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 33%, and the description only indirectly references income and city, leaving parameters like idade, dependentes, tipo_imovel, FGTS values, and primeiro_imovel unexplained. It does not compensate for the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool estimates an educational property-value range based on monthly income, using a specific verb and resource. It distinguishes itself from siblings by explicitly stating it is not a quote or pre-approval and is intended for pre-search use.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly directs use 'ANTES de buscar imoveis' and lists exclusions (not a quote, not pre-approval), but does not name alternative sibling tools. This provides clear when-to-use context with some exclusions, though not full alternative guidance.
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 sideARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| imovel_ids | Yes | Lista de 2 a 4 UUIDs de imoveis retornados pela busca |
Tool Definition Quality
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.
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.
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.
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.
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.
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 propertyARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| imovel_id | Yes | UUID do imovel |
Tool Definition Quality
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.
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.
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.
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.
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.
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 estimatorARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| idade | Yes | Idade do proponente principal | |
| cidade | No | ||
| estado | No | SP | |
| dependentes | No | ||
| entrada_brl | No | ||
| prazo_meses | No | ||
| tipo_imovel | No | novo | |
| valor_fgts_brl | No | Valor de FGTS a usar (em reais, nao boolean) | |
| primeiro_imovel | Yes | Se e o primeiro imovel da familia | |
| valor_imovel_brl | Yes | Valor do imovel em reais (max R$ 5 milhoes) | |
| renda_familiar_brl | Yes | Renda familiar mensal em reais (max R$ 100 mil) | |
| fgts_acima_36_meses | No | ||
| sistema_amortizacao | No | sac | |
| modalidade_indexador | No | tr_plus |
Tool Definition Quality
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.
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.
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.
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.
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.
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 locationARead-onlyInspect
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).
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitude (opcional, alternativa a referencia) | |
| lng | No | Longitude (opcional, alternativa a referencia) | |
| limit | No | ||
| raio_km | No | Raio de busca em km (padrao 5) | |
| referencia | No | Endereco, CEP, nome de bairro ou ponto de referencia (ex: "Av Paulista 1578", "13084-060") |
Tool Definition Quality
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.
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.
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.
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.
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.
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 catalogARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| bairro | No | Nome do bairro (opcional). Se omitido, retorna stats da cidade inteira. | |
| cidade | Yes | Nome da cidade (ex: "Joao Pessoa") |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-quality-maintenanceEnables 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.
- Flicense-qualityCmaintenanceMCP 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.
- Alicense-qualityBmaintenanceEnables 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-maintenanceEnables 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.