Skip to main content
Glama
jhw7500

Email MCP Server

by jhw7500

Server Quality Checklist

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

  • Disambiguation4/5

    Most tools have distinct purposes, but there is some overlap between list_emails and fetch_recent_emails, as both retrieve recent emails, which could cause confusion. The other tools are clearly differentiated, such as send_email for sending and read_email for reading specific emails.

    Naming Consistency5/5

    All tool names follow a consistent snake_case pattern with clear verb_noun combinations, such as download_attachment, fetch_email_thread, and send_email. This consistency makes the tool set predictable and easy to navigate for an agent.

    Tool Count5/5

    With 8 tools, the server is well-scoped for email management, covering key operations like sending, reading, listing, searching, and handling attachments. Each tool serves a specific function without redundancy, making the count appropriate for the domain.

    Completeness4/5

    The tool set provides strong coverage for email operations, including CRUD-like actions (send, read, list, search) and attachment handling. A minor gap is the lack of tools for updating or deleting emails, but agents can work around this with the existing tools for most workflows.

  • Average 2.9/5 across 8 of 8 tools scored.

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

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

    No annotations are provided, so the description carries full burden for behavioral disclosure. It states the action but doesn't describe any behavioral traits such as permissions needed, whether it's idempotent, error handling, or side effects. This is inadequate for a mutation tool with zero annotation coverage.

    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 a single, efficient sentence with no wasted words. It's appropriately sized for a simple tool, though it could be more informative. The structure is front-loaded but minimal.

    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 this is a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't address behavioral aspects like success/failure responses, authentication needs, or usage context. For a tool that sends emails, more detail is warranted.

    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 (to, subject, body). The description adds no additional meaning beyond what the schema provides, such as format examples or constraints. Baseline 3 is appropriate when schema does the heavy lifting.

    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 '이메일을 발송합니다' (sends an email) states the basic action but lacks specificity about scope or resource. It doesn't distinguish from siblings like fetch_email_thread or search_emails, which are read operations versus this write operation. The purpose is clear but minimal.

    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 like authentication, rate limits, or when to choose send_email over other email-related tools. The description offers no context for usage decisions.

    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 the download action but doesn't mention permissions needed, file system impacts, error handling, or whether it overwrites existing files. This leaves significant gaps for a tool that writes to the filesystem.

    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 that directly states the tool's function without unnecessary words. It's appropriately sized for a straightforward download operation.

    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 tool with 3 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what happens after download (success/failure indicators), file naming conventions, or how it interacts with the email system. The lack of behavioral context is particularly problematic for a filesystem-writing operation.

    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 parameters are well-documented in the schema. The description adds minimal value beyond the schema, mentioning '지정된 경로' (specified path) which aligns with save_path but doesn't provide additional context about parameter relationships or usage.

    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 ('다운로드합니다' - downloads) and the resource ('이메일 첨부파일' - email attachment), specifying what the tool does. It distinguishes itself from siblings like read_attachment_text by focusing on downloading rather than reading content, though it doesn't explicitly name alternatives.

    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 read_attachment_text or other email-related tools. It mentions a default save path but doesn't explain prerequisites, error conditions, or typical use cases.

    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 mentions the scope ('최근 100건에서 검색합니다') and implies a read-only operation by using '복원합니다' (restores), but lacks critical details such as authentication requirements, rate limits, error conditions, or what '복원' (restoration) entails (e.g., does it fetch full conversation history?). For a tool with zero annotation coverage, this is insufficient.

    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, consisting of two sentences that directly state the tool's purpose and scope. There is no wasted language, and it efficiently communicates core information. However, it could be slightly improved with more structured guidance, preventing a perfect score of 5.

    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 moderate complexity (single parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and scope but lacks details on behavioral traits, output format, or differentiation from siblings. Without annotations or an output schema, the description should provide more context (e.g., what '복원' returns), making it incomplete for optimal agent use.

    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 the parameter 'subject_keyword' fully documented in the schema as '제목에 포함된 키워드' (keyword included in the subject). The description adds no additional parameter semantics beyond what the schema provides, such as format examples or search behavior specifics. According to guidelines, when schema coverage is high (>80%), the baseline score is 3 even without param info 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: '제목 키워드로 이메일 스레드(대화)를 복원합니다' (Restores email threads/conversations by subject keyword). It specifies the verb ('복원합니다' - restores) and resource ('이메일 스레드' - email threads), and mentions the scope ('최근 100건에서 검색합니다' - searches in the most recent 100 items). However, it doesn't explicitly differentiate from sibling tools like 'search_emails' or 'fetch_recent_emails', which prevents a score of 5.

    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 minimal usage guidance. It states the tool searches within the most recent 100 items, but offers no explicit advice on when to use this tool versus alternatives like 'search_emails' or 'fetch_recent_emails'. There's no mention of prerequisites, exclusions, or comparative contexts with sibling tools, leaving the agent with little guidance on 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?

    With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a read operation ('조회합니다') and lists included fields, but doesn't mention important behavioral aspects like ordering (most recent first?), pagination, authentication requirements, rate limits, or what happens when count exceeds available emails. The description adds minimal behavioral context beyond the basic operation.

    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 appropriately concise with two sentences that efficiently convey the core functionality. The first sentence states the main purpose, and the second adds useful detail about included fields. There's no wasted language or 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?

    For a read operation with no annotations and no output schema, the description is insufficient. It doesn't explain the return format beyond listing three field names, doesn't specify ordering or time range for 'recent', and provides no error handling information. Given the complexity of email data and lack of structured documentation, the description should provide more complete context for effective tool use.

    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 clear documentation of the 'count' parameter including default value and maximum. The description adds no parameter information beyond what's already in the schema. According to scoring rules, when schema_description_coverage is high (>80%), the baseline is 3 even with no param info in 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 as '조회합니다' (retrieve/list) with the resource '최근 이메일 목록' (recent email list) and specifies what information is included. It distinguishes from siblings like 'search_emails' by focusing on recent emails rather than search functionality, but doesn't explicitly contrast with 'fetch_recent_emails' which appears to be a similar sibling.

    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 'fetch_recent_emails' or 'search_emails'. It mentions '최근' (recent) which implies a temporal context, but doesn't specify what 'recent' means or when to choose this over other email retrieval tools.

    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 reads content, implying a read-only operation, but doesn't disclose behavioral traits such as authentication requirements, rate limits, error handling, or whether it returns structured data. The description is minimal and lacks context beyond the basic action.

    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 very concise and front-loaded, consisting of a single sentence that directly states the tool's function. There is no wasted language, and every word contributes to understanding the purpose efficiently.

    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 tool's complexity (reading email content with attachments) and lack of annotations and output schema, the description is incomplete. It doesn't explain return values, error cases, or how attachments are handled (e.g., as metadata or links). For a tool with no structured output, more context is needed to guide the agent effectively.

    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 parameter 'id' documented as 'email ID (from list_emails)'. The description doesn't add meaning beyond this, as it doesn't explain parameter usage or constraints. With high schema coverage, the baseline is 3, and the description doesn't compensate with extra details.

    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: 'read the full content of a specific email, including body and attachment list.' It specifies the verb ('read') and resource ('specific email'), and mentions what content is included. However, it doesn't explicitly differentiate from siblings like 'fetch_email_thread' or 'list_emails' beyond implying it's for a single email.

    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 email ID from 'list_emails'), exclusions, or comparisons to siblings like 'fetch_recent_emails' or 'search_emails'. Usage is implied only by the action described.

    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 full burden. It states the search scope (subject and sender) but doesn't disclose critical behaviors: whether it's read-only or mutating, authentication needs, rate limits, pagination, error handling, or return format. For a search tool with zero annotation coverage, this leaves significant gaps in understanding how it operates.

    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 a single, efficient sentence in Korean that states the core function. It's appropriately sized for a simple search tool, with no wasted words. However, it could be slightly more structured by explicitly separating purpose from scope for better readability.

    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 no annotations, no output schema, and a search operation that likely returns complex results, the description is incomplete. It doesn't explain what the tool returns (e.g., email IDs, summaries, full content), how results are ordered, or error conditions. For a tool with 2 parameters and potential behavioral complexity, more context is needed to guide effective use.

    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 fully documents both parameters. The description adds no parameter-specific information beyond implying keyword usage for subject/sender search. It doesn't explain keyword matching (exact, partial, case-sensitive), limit behavior beyond the schema's default, or other semantic details. Baseline 3 is appropriate when 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 tool's purpose: 'search emails by keyword' with specific scope 'in subject and sender'. It distinguishes from siblings like 'fetch_recent_emails' or 'list_emails' by specifying keyword-based search. However, it doesn't explicitly contrast with 'fetch_email_thread' or other search-related tools, keeping it from a perfect 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 when to prefer this over 'fetch_recent_emails' for recent emails, 'list_emails' for unfiltered listing, or 'fetch_email_thread' for thread-based retrieval. No prerequisites, exclusions, or comparative context is given.

    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 mentions fetching 'recent' emails in batch with full body content, but doesn't specify what 'recent' means (e.g., time frame), whether authentication is required, rate limits, or how errors are handled. For a tool with no annotations, 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.

    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 functionality and suggested use case. It's front-loaded with the main purpose, though the second sentence could be more tightly integrated. There's no wasted text, but it could benefit from slightly better structure.

    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 moderate complexity (fetching emails with one parameter), no annotations, and no output schema, the description is adequate but incomplete. It covers the basic purpose and usage hint but lacks details on behavior, output format, and error handling, which are important for an agent to use it correctly.

    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, clearly documenting the 'count' parameter with its type, default, and maximum. The description adds minimal value beyond this, only implying batch fetching without providing additional parameter context. This meets the baseline of 3 when schema coverage is high.

    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: fetching recent emails in batch with their full body content. It specifies the verb ('fetch'), resource ('recent emails'), and scope ('full body, batch'), but doesn't explicitly differentiate from siblings like 'list_emails' or 'read_email' beyond the batch aspect.

    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 by suggesting 'use for summarization/schedule extraction,' which gives context for when this tool might be appropriate. However, it doesn't explicitly state when to use this versus alternatives like 'list_emails' or 'search_emails,' nor does it mention any exclusions or prerequisites.

    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 the tool extracts and returns text, but doesn't mention error handling (e.g., unsupported file types), performance characteristics, or whether the operation is read-only/destructive. The mention of Claude summarization adds some context about intended use, but lacks operational details.

    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 efficiently structured in two sentences: one stating the core functionality and supported file types, and another explaining the purpose for Claude integration. Both sentences add value, though the second sentence could be integrated more tightly with the first.

    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?

    For a tool with 2 parameters, 100% schema coverage, and no output schema, the description provides adequate basic context about what the tool does and why. However, it lacks details about return format (e.g., structured text vs raw extraction), error conditions, or limitations of the text extraction process that would be helpful given no annotations exist.

    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 both parameters (email_id and filename) adequately. The description doesn't add any parameter-specific information beyond what's in the schema, such as format examples or constraints on filename matching. Baseline 3 is appropriate when schema provides complete 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: extracting text from email attachments (pptx, docx, xlsx, pdf, txt) and returning it. It specifies the resource (email attachments) and the action (text extraction), but doesn't explicitly differentiate from sibling tools like 'download_attachment' which handles file downloads rather than text extraction.

    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 implies usage context by mentioning 'Claude가 내용을 요약할 수 있도록' (so Claude can summarize the content), suggesting this tool is for content analysis rather than file retrieval. However, it doesn't provide explicit guidance on when to use this versus alternatives like 'download_attachment' for binary files or 'read_email' for email body text.

    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

email-mcp-server MCP server

Copy to your README.md:

Score Badge

email-mcp-server 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/jhw7500/email-mcp-server'

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