Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.10

  • Disambiguation4/5

    The tools are mostly distinct with clear purposes, but there is some potential confusion between 'upload_page' and 'create_child_page' for page creation scenarios, as both involve creating pages but under different conditions. The descriptions provide explicit routing rules to mitigate this, but an agent might still need to carefully parse user intent to choose correctly.

    Naming Consistency5/5

    All tool names follow a consistent snake_case pattern with clear verb_noun structures (e.g., create_child_page, list_spaces, search_pages, sync_file, update_page, upload_page). This consistency makes the tool set predictable and easy to understand at a glance.

    Tool Count5/5

    With 6 tools, the server is well-scoped for its purpose of managing Confluence pages from Markdown files. The count is appropriate, covering key operations like listing, searching, creating, updating, and syncing without being overwhelming or too sparse.

    Completeness4/5

    The tool set covers essential CRUD-like operations for Confluence pages (create, update, sync, list, search), but there are minor gaps such as the lack of a delete_page tool for full lifecycle management. However, agents can likely work around this by using other methods or the existing tools for most workflows.

  • Average 3.8/5 across 6 of 6 tools scored. Lowest: 2.7/5.

    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
  • This repository is licensed under MIT License.

  • 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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the basic action ('Search') without detailing aspects like whether it's read-only (implied but not explicit), authentication needs, rate limits, pagination, or error handling. This leaves significant gaps for a search tool with multiple parameters.

    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, efficient sentence with zero waste—'Search for Confluence pages' directly conveys the core action and target. It's appropriately sized and front-loaded, making it easy to parse without unnecessary elaboration.

    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 of a search tool with 3 parameters, no annotations, and no output schema, the description is incomplete. It doesn't cover behavioral traits, usage context, or result format, which are essential for effective tool invocation. The schema handles parameters, but overall guidance is lacking.

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

    Parameters3/5

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

    The schema description coverage is 100%, so the schema already documents all parameters (query, spaceKey, limit) with descriptions. The description adds no additional meaning beyond what the schema provides, such as explaining search syntax or result ordering. Baseline 3 is appropriate as the schema handles parameter documentation adequately.

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

    Purpose3/5

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

    The description 'Search for Confluence pages' clearly states the verb ('Search') and resource ('Confluence pages'), but it's vague about scope and doesn't differentiate from potential siblings like 'list_spaces' or 'update_page'. It specifies the type of content but not the search behavior or result format.

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

    Usage Guidelines2/5

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

    No guidance is provided on when to use this tool versus alternatives. It doesn't mention prerequisites, context for searching, or how it differs from other tools like 'list_spaces' (which might list without querying) or 'update_page' (for modifications). The description lacks any when-to-use or when-not-to-use indicators.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool updates pages but doesn't cover permissions needed, whether changes are reversible, rate limits, or what happens to existing content not mentioned. This is a significant gap for a mutation tool.

    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, efficient sentence with zero waste. It's front-loaded with the core action and resource, making it easy to scan and understand quickly.

    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?

    For a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits, error handling, return values, and usage context. Given the complexity of updating a Confluence page, more guidance is needed.

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

    Parameters3/5

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

    Schema description coverage is 100%, so the schema already documents all parameters. The description adds minimal value by mentioning 'Markdown content' and 'existing page', which are already in the schema. Baseline 3 is appropriate when the schema does 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 verb ('Update') and resource ('existing Confluence page'), specifying it's for modification rather than creation. It distinguishes from siblings like 'create_child_page' by focusing on updates, though it doesn't explicitly contrast with 'upload_page' which might have overlapping functionality.

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

    Usage Guidelines2/5

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

    No guidance is provided on when to use this tool versus alternatives like 'upload_page' or 'create_child_page'. The description implies usage for updating existing pages but doesn't mention prerequisites, constraints, or scenarios where other tools would be more appropriate.

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

  • Behavior3/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It adds useful context about workflow constraints (not to use before upload_page) but doesn't describe response format, pagination, error conditions, or authentication requirements. The description provides some behavioral context but leaves significant gaps.

    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 efficiently structured in two sentences with zero wasted words. The first sentence states the purpose, the second provides crucial usage guidelines. Every sentence earns its place by adding distinct value.

    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 listing tool with 2 documented parameters and no output schema, the description provides strong purpose clarity and usage guidelines. However, without annotations or output schema, it lacks information about response format and error handling. The description is mostly complete but could benefit from mentioning what information is returned about spaces.

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

    Parameters3/5

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

    Schema description coverage is 100%, so the schema already fully documents both parameters (limit and type with enum values). The description adds no parameter-specific information beyond what's in the schema, meeting the baseline expectation when schema coverage is complete.

    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 verb 'List' and the resource 'available Confluence spaces', making the purpose specific and unambiguous. It distinguishes this tool from siblings like 'search_pages' or 'upload_page' by focusing on space listing rather than page operations.

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

    Usage Guidelines5/5

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

    The description provides explicit guidance on when to use ('when user explicitly asks to browse/list spaces') and when not to use ('Do NOT use this before upload_page'), including a clear alternative ('ask user directly for space key or URL'). This directly addresses usage context relative to sibling tools.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a creation/mutation operation (not read-only), specifies the hierarchical relationship aspect, and warns about the destructive nature of the alternative tool (upload_page updates existing pages). However, it doesn't mention permissions, rate limits, or what happens on success/failure.

    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 well-structured with clear sections (purpose, usage guidelines, warnings) and uses bullet points efficiently. While slightly longer than minimal, every sentence adds value by clarifying usage scenarios and differentiating from alternatives, with no redundant information.

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

    Completeness4/5

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

    For a creation tool with no annotations and no output schema, the description does an excellent job explaining when to use it and distinguishing it from alternatives. It covers the core behavioral context well, though it could benefit from mentioning what happens on success (e.g., returns new page URL) or failure conditions.

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

    Parameters3/5

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

    Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema descriptions, maintaining the baseline score for high schema coverage.

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

    Purpose5/5

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

    The description clearly states the specific action ('Create a NEW page as a child') and resource ('sub-page of an existing page'), distinguishing it from sibling tools like upload_page which updates instead of creates. The purpose is unambiguous and directly addresses hierarchical page creation.

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

    Usage Guidelines5/5

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

    The description provides explicit guidance with dedicated 'MUST USE THIS TOOL WHEN' and 'WARNING' sections, including multilingual examples and clear alternatives (upload_page for updates). It explicitly states when to use this tool versus other options, making selection straightforward for an agent.

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

  • Behavior4/5

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

    With no annotations provided, the description carries full burden and adds valuable behavioral context: it discloses that the tool reads files directly from the filesystem, handles file reading internally, and includes critical instructions about path handling and user interaction for ambiguities. However, it doesn't mention potential errors, permissions, or rate limits.

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

    Conciseness3/5

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

    The description is appropriately sized but could be more front-loaded; the purpose is clear in the first sentence, but the critical instructions and examples are lengthy. Every sentence adds value, but the structure could be tighter by integrating examples more succinctly.

    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 no annotations and no output schema, the description does well by covering purpose, usage guidelines, and parameter semantics with examples. It addresses key complexities like file path handling. However, it lacks details on error cases, response format, or confirmation of success, leaving some gaps for a mutation tool.

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

    Parameters4/5

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

    Schema description coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema: it emphasizes that 'file_path' must be exact and not inferred, provides examples of usage, and clarifies the tool's internal handling of file reading. This compensates well, though it doesn't detail optional 'title' parameter usage.

    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 specific action ('sync a LOCAL file to a Confluence page') and resource ('file from the filesystem'), distinguishing it from sibling tools like 'update_page' or 'upload_page' which don't mention local file reading. It explicitly mentions the filesystem source, making the purpose distinct.

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

    Usage Guidelines5/5

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

    The description provides explicit guidance on when to use this tool vs. alternatives through critical instructions: it specifies to use exact file paths from user input, not inferred from URLs, and to ask for clarification if multiple files match. This clearly defines the tool's context and exclusions compared to other page-update tools.

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

  • Behavior4/5

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

    With no annotations provided, the description carries full burden and adds valuable behavioral context beyond basic functionality. It explains the routing logic based on input type, specifies that parentId is ignored during updates, and mentions that Mermaid diagrams are auto-converted to images. However, it doesn't cover permission requirements, rate limits, or error conditions.

    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 efficiently structured with clear sections (main purpose, routing rules, do's/don'ts, special feature). Every sentence earns its place by providing essential guidance. The use of emojis and formatting makes it scannable while remaining concise.

    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 3-parameter tool with no annotations and no output schema, the description provides good contextual coverage. It explains the dual create/update behavior, routing logic, sibling tool relationships, and a special feature (Mermaid conversion). However, it doesn't describe what the tool returns or potential error conditions.

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

    Parameters3/5

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

    Schema description coverage is 100%, so the schema already documents all three parameters. The description adds some semantic context by explaining how the 'space' parameter behaves differently depending on whether it's a space key/URL or page URL, but doesn't provide additional meaning beyond what the schema descriptions already cover.

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

    Purpose5/5

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

    The description clearly states the tool's purpose with specific verbs ('Upload Markdown to Confluence', 'UPDATE existing page') and resources ('at SPACE ROOT level'). It explicitly distinguishes from sibling tools by stating 'DO NOT use this tool to create child/sub-pages' and directing users to 'create_child_page' instead.

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

    Usage Guidelines5/5

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

    The description provides explicit routing rules with clear when/when-not guidance: 'Page URL provided → UPDATES that existing page', 'Space key/URL only → Creates NEW page at space root level', and '❌ DO NOT use this tool to create child/sub-pages. ✅ Use 'create_child_page' tool instead'. It names the specific alternative tool for hierarchical pages.

    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

md2confluence-mcp MCP server

Copy to your README.md:

Score Badge

md2confluence-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/Gyeom/md2confluence-mcp'

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