Skip to main content
Glama
EGorsel

Mendix Context Bridge

by EGorsel

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: get_domain_model covers entities and types in a module, inspect_database_schema focuses on table column structures, inspect_local_microflow handles microflow logic steps, and list_local_modules lists modules in a file. There is no overlap or ambiguity between these functions.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern in snake_case, such as get_domain_model, inspect_database_schema, inspect_local_microflow, and list_local_modules. This uniformity makes the set predictable and easy to understand.

    Tool Count4/5

    With 4 tools, the count is slightly low but reasonable for the server's purpose of providing Mendix context insights. It covers key areas like modules, domain models, database schemas, and microflows, though it might benefit from additional tools for more comprehensive coverage.

    Completeness3/5

    The tools cover basic inspection and listing functions for modules, domain models, database schemas, and microflows, but there are notable gaps. For example, there are no tools for creating, updating, or deleting elements, which limits the server to read-only operations and may cause agent failures in workflows requiring modifications.

  • Average 3.1/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool searches and returns logical steps, implying a read-only operation, but doesn't disclose critical traits like error handling (e.g., what happens if the microflow isn't found), performance considerations, or output format details. For a tool with no annotations, this leaves significant gaps in understanding its behavior beyond the basic purpose.

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

    Conciseness5/5

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

    The description is a single, clear sentence in Dutch: 'Zoekt een microflow op naam en geeft de logische stappen terug.' It is front-loaded with the core action and outcome, with zero wasted words. Every part of the sentence directly contributes to understanding the tool's function, making it highly efficient and well-structured.

    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?

    Given the complexity (a search tool with no output schema and no annotations), the description is incomplete. It doesn't explain what 'logical steps' entail, how they are formatted, or any limitations (e.g., only works for local microflows). With no output schema to clarify return values and no annotations for behavioral context, the description should provide more detail to fully guide the agent, but it falls short.

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

    Parameters3/5

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

    The input schema has 100% description coverage, with the parameter 'name' documented as 'Naam van de microflow' (Name of the microflow). The description adds no additional parameter semantics beyond what the schema provides, such as format examples or constraints. Since schema coverage is high, the baseline score of 3 is appropriate, as the schema adequately documents the parameter without needing extra details in the description.

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

    Purpose4/5

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

    The description clearly states the tool's purpose: 'Zoekt een microflow op naam en geeft de logische stappen terug' (Searches for a microflow by name and returns the logical steps). It specifies the verb ('zoeken' - search), resource ('microflow'), and output ('logical steps'), which is specific and actionable. However, it doesn't explicitly differentiate from sibling tools like 'get_domain_model' or 'inspect_database_schema', which likely serve different purposes but share a similar inspection theme.

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

    Usage Guidelines2/5

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

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools, prerequisites, or contextual cues for selection. For example, it doesn't clarify if this is for debugging, documentation, or analysis, or how it differs from 'list_local_modules'. Without such guidance, the agent must infer usage from the tool name and description alone.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool provides an overview, implying a read-only operation, but doesn't clarify if it's safe, requires permissions, has rate limits, or what the output format might be (e.g., list, structured data). For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior and constraints.

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

    Conciseness5/5

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

    The description is a single, clear sentence in Dutch that directly states the tool's purpose without any fluff or redundancy. It's front-loaded with the key action and resource, making it efficient and easy to parse. Every word earns its place, achieving optimal conciseness.

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

    Completeness3/5

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

    Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose but lacks details on usage guidelines, behavioral traits, or output expectations. Without annotations or an output schema, the agent might struggle with how to interpret results, but the simplicity of the tool means it's not critically incomplete.

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

    Parameters3/5

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

    The input schema has 100% description coverage, with the parameter 'module_name' well-documented as 'De naam van de module waarvan je het domeinmodel wilt zien' (The name of the module for which you want to see the domain model). The description adds no additional parameter details beyond what the schema provides, such as format examples or constraints. With high schema coverage, the baseline score of 3 is appropriate as the schema handles the heavy lifting.

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

    Purpose4/5

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

    The description clearly states the tool's purpose: 'Geeft een overzicht van alle entiteiten en types in een specifieke module' (Provides an overview of all entities and types in a specific module). It specifies the verb ('geeft een overzicht van' - provides an overview of) and resource ('alle entiteiten en types' - all entities and types), making the action and target explicit. However, it doesn't distinguish this from sibling tools like 'inspect_database_schema' or 'list_local_modules', which might offer related functionality, so it doesn't reach the highest score.

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

    Usage Guidelines2/5

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

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'inspect_database_schema' or 'list_local_modules', nor does it specify prerequisites, exclusions, or contextual cues for selection. The agent must infer usage based on the purpose alone, which is insufficient for optimal tool selection.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. The description states it returns column structure, which implies a read-only operation, but doesn't explicitly confirm this is safe (non-destructive) or mention any authentication needs, rate limits, or error conditions. It mentions the local database context, which is useful context, but lacks details about what 'local' means (e.g., development vs. production environment) or any constraints on table accessibility.

    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 concise with two sentences that efficiently convey the core purpose and usage context. The first sentence states what the tool does, and the second adds practical value. There's no unnecessary repetition or fluff, though it could be slightly more structured (e.g., by explicitly separating purpose from guidelines).

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

    Completeness3/5

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

    Given the tool has one parameter with full schema coverage and no output schema, the description provides basic completeness: it explains what the tool returns (column structure) and why it's useful (to understand Mendix data storage). However, as a database inspection tool with no annotations, it lacks details about behavioral aspects like safety, permissions, or output format specifics. The description compensates somewhat with the Mendix context, but doesn't fully address gaps in behavioral transparency.

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

    Parameters3/5

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

    Schema description coverage is 100%, with the schema fully documenting the single parameter 'table_name' including its type, description, and default value. The description doesn't add any parameter-specific information beyond what's in the schema (e.g., it doesn't explain table naming conventions or valid table examples). With high schema coverage and only one parameter, the baseline score of 3 is appropriate as the schema handles most of the parameter documentation.

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

    Purpose4/5

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

    The description clearly states the tool's purpose: 'Geeft de kolomstructuur van een tabel in de lokale database terug' (Returns the column structure of a table in the local database). It specifies the verb ('geeft terug' - returns) and resource ('kolomstructuur van een tabel' - column structure of a table). However, it doesn't explicitly differentiate from sibling tools like 'get_domain_model' or 'inspect_local_microflow', which might also provide structural information about the database or application.

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

    Usage Guidelines3/5

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

    The description provides implied usage guidance: 'Handig om te begrijpen hoe Mendix data opslaat' (Useful to understand how Mendix stores data). This suggests the tool is for exploring data storage structure, but it doesn't explicitly state when to use this tool versus alternatives like 'get_domain_model' (which might provide a broader domain model) or 'list_local_modules' (which might list modules rather than table structures). No explicit when-not-to-use or alternative tool recommendations are provided.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool provides an overview but doesn't describe what 'overzicht' entails (e.g., list format, metadata included), whether it's read-only or has side effects, or any constraints like performance or file access requirements. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

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

    Conciseness5/5

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

    The description is a single, clear sentence in Dutch that directly states the tool's function without unnecessary words. It's front-loaded with the core purpose and appropriately sized for a simple tool with no parameters.

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

    Completeness3/5

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

    Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally adequate. It states what the tool does but lacks details on output format, behavioral traits, or usage context. Without annotations or output schema, the description should ideally provide more context about what 'overzicht' includes, but it's complete enough for basic understanding.

    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 tool has 0 parameters, and schema description coverage is 100% (empty schema). The description doesn't need to add parameter information, so it meets the baseline of 4 for tools with no parameters, as there's no gap to compensate for.

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

    Purpose4/5

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

    The description clearly states the tool's purpose: 'Geeft een overzicht van alle modules in het geopende .mpr bestand' (Provides an overview of all modules in the opened .mpr file). It specifies the verb ('geeft een overzicht' - provides an overview) and resource ('modules in het geopende .mpr bestand'), though it doesn't explicitly differentiate from sibling tools like 'get_domain_model' or 'inspect_local_microflow'.

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

    Usage Guidelines2/5

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

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an opened .mpr file), exclusions, or comparisons to sibling tools like 'inspect_local_microflow' which might handle microflows within modules. Usage is implied by the resource scope but not explicitly stated.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mendix-local-mcp MCP server

Copy to your README.md:

Score Badge

mendix-local-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

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

curl -X GET 'https://glama.ai/api/mcp/v1/servers/EGorsel/mendix-local-mcp'

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