Skip to main content
Glama
hdmt
by hdmt

Server Quality Checklist

50%
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 with no overlap: create_draft_email for creation, get_email for retrieval, list_emails for listing, and update_email for updating. The descriptions reinforce these distinct roles, making tool selection straightforward for an agent.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern (create_draft_email, get_email, list_emails, update_email), using snake_case uniformly. This predictability aids in understanding and usage without confusion.

    Tool Count4/5

    With 4 tools, the server is well-scoped for basic email management, covering creation, retrieval, listing, and updating. It's slightly lean but reasonable, as it handles core CRUD operations without unnecessary bloat.

    Completeness4/5

    The tool set covers essential CRUD operations for emails (create, get, list, update), with no dead ends. A minor gap exists in lacking a delete_email tool, but agents can work around this, and the surface supports core workflows effectively.

  • Average 2.7/5 across 4 of 4 tools scored. Lowest: 2/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
  • 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

  • Behavior1/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 but offers nothing beyond the basic action. It doesn't indicate whether this is a destructive operation, what permissions might be required, whether changes are reversible, or what happens to unspecified fields. For a mutation tool with zero annotation coverage, this represents a critical gap in understanding the tool's 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 extremely concise at just two words ('メールを更新'), with zero wasted language. It's front-loaded with the core action and resource. While this conciseness comes at the expense of completeness, the description itself doesn't contain unnecessary verbiage or poor structure.

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

    Completeness1/5

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

    Given this is a mutation tool with 5 parameters (including nested objects), no annotations, and no output schema, the description is completely inadequate. It provides no context about what 'updating' entails, what fields can be modified, what the response looks like, or how this differs from creation operations. The agent would struggle to use this tool correctly without significant trial and error.

    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%, with all 5 parameters documented in the input schema. The description adds no additional parameter information beyond what's already in the structured schema. According to scoring rules, when schema coverage is high (>80%), the baseline score is 3 even with no parameter information in the description.

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

    Purpose2/5

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

    The description 'メールを更新' (Update email) is a tautology that restates the tool name without providing specific details about what aspects of an email are updated. It doesn't distinguish this tool from sibling tools like create_draft_email or get_email beyond the basic verb. While it identifies the resource (email), it lacks specificity about scope or functionality.

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

    Usage Guidelines1/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 like create_draft_email or get_email. There's no mention of prerequisites, appropriate contexts, or exclusions. The agent receives no help in distinguishing between update operations and creation/retrieval operations.

    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 full burden for behavioral disclosure. It states this is a retrieval operation ('取得'), which implies read-only behavior, but doesn't specify authentication requirements, rate limits, error conditions, or what happens if the email ID is invalid. For a tool with zero annotation coverage, this leaves significant behavioral 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 a single, efficient Japanese sentence that directly states the tool's purpose with zero wasted words. It's appropriately sized for a simple retrieval tool and front-loads the essential information. Every word earns its place.

    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 retrieval tool with no annotations and no output schema, the description is insufficient. It doesn't explain what '詳細情報' (detailed information) includes, the response format, error handling, or authentication needs. Given the lack of structured fields to compensate, the description should provide more complete context about the tool's behavior and outputs.

    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 single parameter 'emailId' clearly documented in the schema as 'メールID'. The description doesn't add any parameter information beyond what the schema provides - it doesn't explain where to find email IDs, their format, or validation rules. 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 action ('取得' - get/retrieve) and the resource ('特定のメールの詳細情報' - specific email's detailed information). It distinguishes from sibling tools like 'list_emails' (which lists multiple emails) and 'create_draft_email' (which creates new emails). However, it doesn't explicitly mention what constitutes 'detailed information' beyond the basic email content.

    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 like 'list_emails' or 'update_email'. There's no mention of prerequisites (e.g., needing an email ID), use cases (e.g., viewing full email content after listing), or exclusions (e.g., not for modifying emails). The agent must infer usage from the tool name and sibling context 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?

    With no annotations provided, the description carries full burden for behavioral disclosure but offers minimal information. It states it 'gets' marketing emails but doesn't clarify whether this is a read-only operation, whether it requires specific permissions, what format the returned data takes, or if there are rate limits. For a list operation with zero annotation coverage, this represents a significant transparency gap.

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

    Conciseness5/5

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

    The description is extremely concise - a single Japanese sentence that directly states the tool's purpose without any fluff or unnecessary elaboration. Every word serves a functional purpose, making it efficient and front-loaded with the essential information about what the tool does.

    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 list operation with no annotations and no output schema, the description is insufficiently complete. While the purpose is clear, there's no information about what the tool returns (email objects, IDs only, metadata), how results are structured, or any behavioral constraints. The agent lacks crucial context needed to properly invoke and interpret results from this tool.

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

    Parameters3/5

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

    The description adds no parameter information beyond what's already documented in the schema (which has 100% coverage). All three parameters (limit, offset, sort) are fully described in the input schema with their types, defaults, and format details. The description doesn't provide additional context about how these parameters affect the listing behavior, so it meets the baseline for high schema coverage.

    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 action ('取得' - get/fetch) and resource ('HubSpotのマーケティングメール一覧' - HubSpot marketing email list), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_email' (which likely fetches a single email) or 'create_draft_email', leaving room for potential confusion about when to use this list operation versus individual email retrieval.

    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. There's no mention of when to choose list_emails over get_email (for bulk vs single email retrieval) or create_draft_email. The agent must infer usage context solely from tool names, 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. It states the tool creates a draft email, implying a write operation, but doesn't disclose behavioral traits such as permissions required, whether drafts are saved automatically, error handling, or rate limits. The mention of content reuse from 'get_email' adds some context, but critical mutation behaviors are undocumented.

    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 and front-loaded: the first sentence states the core purpose, and the second provides a usage tip. Both sentences earn their place by adding value. However, it could be slightly more structured by explicitly separating purpose from guidelines.

    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 (7 parameters with nested objects, no output schema, and no annotations), the description is incomplete. It doesn't explain what happens after creation (e.g., draft ID returned, storage location), error conditions, or how parameters like 'content' and 'htmlBody' interact. For a mutation tool with rich inputs, more behavioral context 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 7 parameters thoroughly. The description adds minimal value beyond the schema: it hints that 'content' can be obtained from 'get_email' for cloning, but doesn't explain parameter interactions or usage semantics. With high schema coverage, the baseline score of 3 is appropriate.

    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: 'メールの下書きを作成' (create a draft email). It specifies the verb (create) and resource (draft email), but doesn't explicitly differentiate from sibling tools like 'update_email' beyond mentioning 'get_email' for content reuse. The purpose is clear but sibling differentiation is limited to content sourcing.

    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: it suggests using 'get_email' to obtain content when cloning existing emails. However, it doesn't specify when to use this tool versus alternatives like 'update_email' or 'list_emails', nor does it mention prerequisites or exclusions. The guidance is helpful but incomplete.

    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

hubspot-email-mcp MCP server

Copy to your README.md:

Score Badge

hubspot-email-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/hdmt/hubspot-email-mcp'

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