EcoPlaza MCP
Server Details
Read-only MCP for EcoPlaza, Peruvian commercial real estate: projects, units, advisor contact.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct purpose: searching available locations, consulting prices (referral), contacting advisor, listing projects, getting location details, and project info. No overlap.
All tool names follow a consistent verb_noun pattern in Spanish (e.g., buscar_locales_disponibles, listar_proyectos). No mixing of conventions.
With 6 tools, the set is well-scoped for the domain of browsing and inquiring about commercial spaces. Each tool contributes meaningfully.
The tool surface covers the full workflow: discovering projects, searching locations, getting details, handling price inquiries (via referral), and contacting an advisor. No obvious gaps.
Available Tools
6 toolsbuscar_locales_disponiblesBuscar locales disponiblesARead-onlyIdempotentInspect
Busca locales/puestos disponibles (rack comercial) en los proyectos de EcoPlaza, filtrando opcionalmente por proyecto, rango de area en m2 y piso. Devuelve codigo, piso y area de cada local, paginado (maximo 25 resultados por pagina). NO incluye precios: para eso usa consultar_precios_o_financiamiento.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Numero de pagina (por defecto 1). | |
| piso | No | Filtra por piso o nivel exacto. | |
| limit | No | Resultados por pagina (por defecto 10, maximo 25). | |
| area_max_m2 | No | Area maxima en metros cuadrados. | |
| area_min_m2 | No | Area minima en metros cuadrados. | |
| proyecto_slug | No | Filtra por slug de proyecto. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds that it returns code, floor, and area per local, and that results are paginated with a maximum of 25 per page.
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, no wasted words. Front-loaded with purpose, then return fields, pagination, and exclusion. Every sentence adds value.
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 no output schema, the description adequately explains return fields and pagination. It could mention sorting or result ordering, but overall it is sufficient for the tool's 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 100%, so parameters are well-documented. The description summarizes the filter options (project, area range, floor) but adds little beyond the schema. Baseline 3 is appropriate.
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 searches for available commercial spaces in EcoPlaza projects with optional filters. It explicitly distinguishes from the sibling tool 'consultar_precios_o_financiamiento' by saying it does not include prices.
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 tells when to use the tool (to find available spaces) and when not (prices should use another tool). It also notes pagination limits but does not exclude other sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_precios_o_financiamientoConsultar precios o financiamientoARead-onlyIdempotentInspect
ESTA ES LA TOOL CORRECTA cuando el usuario pregunta por precio, costo, cuanto cuesta, financiamiento, credito, cuotas, inicial o forma de pago de un local o proyecto de EcoPlaza. NUNCA devuelve cifras: EcoPlaza conversa precios y financiamiento directamente con un asesor humano en el proyecto. Devuelve un mensaje de derivacion amable, la ubicacion/horario del proyecto (si se indica) y el contacto de WhatsApp para coordinar una visita.
| Name | Required | Description | Default |
|---|---|---|---|
| proyecto_slug | No | Slug del proyecto sobre el que se pregunta (opcional). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the tool is safe. The description adds valuable behavioral detail: it never returns figures, only a referral message with location/hours and WhatsApp contact. No 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?
Two sentences, front-loaded with the core purpose and a critical warning (never returns figures). Every sentence adds value with 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?
For a simple tool with one optional parameter and no output schema, the description covers purpose, behavior, usage guidelines, and clarifies return content. Annotations complement it well.
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 baseline is 3. The description mentions 'si se indica' implying project_slug is used for location/hours retrieval, but it does not add significant meaning beyond the schema's parameter description.
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 is for price/financing inquiries specifically for EcoPlaza projects, using explicit verbs like 'pregunta por precio' and distinguishing from sibling tools by its domain (prices, financing). The title aligns well.
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?
Explicitly states when to use (when user asks about price, cost, financing, etc.) and what it does not do (never returns figures). It implies alternative action (contact human advisor) for actual pricing, providing clear guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
contactar_asesor_comercialContactar asesor comercialARead-onlyInspect
Genera un link de WhatsApp pre-armado hacia el equipo comercial de EcoPlaza ("Gustavito") para coordinar una visita o resolver dudas. NO envia ningun mensaje: solo construye el enlace para que el usuario humano lo abra. Usa el parametro opcional mensaje_interes para personalizar el texto pre-armado.
| Name | Required | Description | Default |
|---|---|---|---|
| proyecto_slug | No | Slug del proyecto de interes (opcional). | |
| mensaje_interes | No | Texto breve describiendo el interes del usuario, se incluye tal cual en el mensaje. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly states that it does NOT send any message—only constructs a link for the user to open. This prevents misinterpretation as a messaging tool. Annotations (readOnlyHint=true) already indicate a safe operation, but the description adds crucial behavioral detail.
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 key action, and contains no unnecessary words. It is efficient and to the point.
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 tool's simplicity (2 optional params, no output schema, annotations present), the description sufficiently covers purpose, behavior, and parameter usage. An agent can correctly determine when and how to invoke the 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 already documents both parameters. The description mentions mensaje_interes as optional for personalizing the message, adding minimal value beyond the schema. proyecto_slug is not highlighted in the description, so no additional insight.
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 generates a pre-built WhatsApp link to the EcoPlaza commercial team for coordinating visits or resolving doubts. It distinguishes itself from sibling tools (e.g., buscar_locales_disponibles, consultar_precios_o_financiamiento) by focusing on human contact via WhatsApp.
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 explicitly says when to use it: to contact the commercial team for visits or doubts. It does not list exclusions or alternatives, but the context is sufficiently clear given the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_proyectosListar proyectos EcoPlazaARead-onlyIdempotentInspect
Lista los proyectos comerciales activos de EcoPlaza (mercados, urbanizaciones y proyectos de departamentos) con su nombre, tipo, slug y logo. Usa esta tool primero para descubrir que proyectos existen antes de pedir informacion detallada o buscar locales disponibles. NO incluye precios ni financiamiento.
| Name | Required | Description | Default |
|---|---|---|---|
| tipo_proyecto | No | Filtra por tipo de proyecto. Si se omite, devuelve todos los tipos. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds that it lists only active projects and returns specific fields, as well as excluding prices, which is useful behavioral context.
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 purpose and usage guidance. Every sentence adds value, no fluff.
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 annotations and simple schema, description is complete: states what it returns, when to use, and what it excludes. No output schema needed for a list 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?
Only one parameter with enum and description in schema. Schema coverage is 100% so baseline 3. Description does not add new meaning beyond schema's filter explanation.
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 the tool lists active commercial projects with specific fields (name, type, slug, logo). It distinguishes from siblings by saying to use first before detailed info or available spaces.
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?
Explicitly says when to use: 'Usa esta tool primero para descubrir que proyectos existen'. Also states what it does NOT include (prices/financing), implying alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
obtener_detalle_localObtener detalle de un localARead-onlyIdempotentInspect
Devuelve el detalle (codigo, piso, area en m2 y proyecto) de un local comercial de EcoPlaza a partir de su codigo exacto, SOLO si actualmente esta disponible. Si el codigo no corresponde a un local disponible, sugiere usar buscar_locales_disponibles. NO incluye precios.
| Name | Required | Description | Default |
|---|---|---|---|
| codigo | Yes | Codigo exacto del local, ej: "P-14" o "B-21". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and idempotentHint=true. The description adds context: it only returns results for available locals, and explicitly excludes price information. No contradictions with 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?
Extremely concise: three sentences covering purpose, failure behavior, and exclusions. No filler, every sentence is informative and front-loaded with key details.
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 no output schema, the description enumerates returned fields (codigo, piso, area en m2 y proyecto) and notes absence of prices. This fully sets expectations for the call result.
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% (codigo has description, pattern, max/min length). The description adds value by explaining that the code must be exact and provides examples 'P-14' or 'B-21', which aids the agent in formatting input.
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 action ('Devuelve el detalle'), the resource ('local comercial'), and the condition ('SOLO si actualmente esta disponible'). It also differentiates from sibling tool 'buscar_locales_disponibles' by specifying when the tool fails.
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?
Explicitly tells when to use ('a partir de su codigo exacto') and when not to use ('Si el codigo no corresponde a un local disponible, sugiere usar buscar_locales_disponibles'). Also specifies what the tool does NOT include ('NO incluye precios').
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
obtener_info_proyectoObtener informacion de un proyectoARead-onlyIdempotentInspect
Devuelve informacion comercial publica de un proyecto especifico de EcoPlaza: ubicacion, como visitarlo, rubros permitidos, horario de atencion, beneficios y situacion legal. Requiere el slug del proyecto (usa listar_proyectos para obtenerlo). NO incluye precios, TEA ni cuotas de financiamiento.
| Name | Required | Description | Default |
|---|---|---|---|
| proyecto_slug | Yes | Slug del proyecto, obtenido de listar_proyectos (ej: "trapiche"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description aligns with these. It adds context by specifying the type of information returned and that it is 'publica'. No contradictions.
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 with no redundancy. Every word adds value: it states the purpose, lists fields, gives usage requirement, and excludes unrelated info. Highly efficient.
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 no output schema, the description adequately enumerates the types of information returned (ubicacion, como visitarlo, rubros permitidos, etc.) and explicitly states what is excluded. For a simple read-only tool with one parameter, this is complete 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 coverage is 100%, with the parameter already described in the schema as the slug from listar_proyectos. The description reinforces this by mentioning it again but does not add new semantic details beyond the schema. Baseline 3 is appropriate.
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 verb ('devuelve'), the resource ('informacion comercial publica de un proyecto especifico de EcoPlaza'), and lists specific fields. It also explicitly distinguishes from siblings by noting what it does NOT include (precios, TEA, cuotas), setting it apart from tools like consultar_precios_o_financiamiento.
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 a clear precondition: requires the project slug, and directs users to use listar_proyectos to obtain it. It also mentions excluded information, implying alternatives. However, it does not explicitly state when to use this tool versus other siblings beyond that exclusion.
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.
6 tool updates
- First observed
buscar_locales_disponibles - First observed
consultar_precios_o_financiamiento - First observed
contactar_asesor_comercial - First observed
listar_proyectos - First observed
obtener_detalle_local - First observed
obtener_info_proyecto
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Avizo (RO SME compliance-deadline SaaS) as MCP tools: about, plans, categories, docs. Read-only.
Public read-only MCP for products, frameworks, guides, methodology, and blog metadata.
312K+ FL commercial parcels, 6,400+ verified listings, AI visibility reports, x402 micropayments
Read-only MCP for identity resolution and write guardrails.
Related MCP Servers
- AlicenseAqualityDmaintenanceRead-only MCP server for Raygister, enabling AI assistants to browse construction projects, lots, specifications, and locations via natural language.68MIT
- FlicenseNot gradedqualityCmaintenanceProvides read-only MCP tools to query building construction approval lifecycle data, covering project discovery, bidding, contracts, drawing review, permits, and completion records.1-
- AlicenseCqualityDmaintenanceEnterprise-level MCP server integrating with Vista CRM (Loft Edition) for real estate operations, offering 40+ tools for property search, pipeline management, lead capture, and agenda control.42MIT
- AlicenseCqualityFmaintenanceRead-only MCP server for buy123 vendor portal, enabling AI assistants to query orders, returns, shipments, products, inventory, and more.61MIT