Skip to main content
Glama
as-j

Fastmail MCP Server

by as-j

reply_email

Reply to an email using Fastmail threading headers to keep the conversation in the same thread. Ideal when you need to respond to a specific message while preserving the thread context. Use instead of send_email for replies.

Instructions

Reply to an existing email with Fastmail threading headers preserved automatically. Use when the user says "reply to this email", "answer the latest message from Alice", or wants a proper threaded response. Do not use for a brand-new outbound message; use send_email. Do not use when you only want to save a reply draft; use save_draft.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
originalEmailIdYesID of the email to reply to
toNoRecipient addresses as [{email, name?}] objects (optional, defaults to original sender)
ccNoCC addresses (optional)
bccNoBCC addresses (optional)
fromNoSender email address (optional, defaults to account primary email)
textBodyNoPlain text body (optional)
htmlBodyNoHTML body (optional)

Implementation Reference

  • Handler function for the reply_email tool. Fetches the original email by ID, extracts its Message-ID for threading, prepends 'Re:' to the subject, determines the reply-to recipient (defaulting to original sender), and calls client.sendEmail with proper inReplyTo and references headers.
    case 'reply_email': {
      const { originalEmailId, to, cc, bcc, from, textBody, htmlBody } = args as any;
      if (!originalEmailId) throw new McpError(ErrorCode.InvalidParams, 'originalEmailId is required');
      if (!textBody && !htmlBody) throw new McpError(ErrorCode.InvalidParams, 'Either textBody or htmlBody is required');
      const originalEmail = await client.getEmailById(originalEmailId);
      const originalMessageId = originalEmail.messageId?.[0];
      if (!originalMessageId) throw new McpError(ErrorCode.InternalError, 'Original email does not have a Message-ID; cannot thread reply');
      const referencesHeader = [...(originalEmail.references || []), originalMessageId];
      let replySubject = originalEmail.subject || '';
      if (!/^Re:/i.test(replySubject)) replySubject = `Re: ${replySubject}`;
      const normalizedTo = to ? normalizeAddresses(to) : [];
      const replyTo = normalizedTo.length > 0
        ? normalizedTo
        : (originalEmail.from?.map((addr: any) => ({ email: addr.email, name: addr.name ?? null })).filter((a: any) => a.email) || []);
      if (replyTo.length === 0) {
        throw new McpError(ErrorCode.InvalidParams, 'Could not determine reply recipient. Please provide "to" explicitly.');
      }
      const submissionId = await client.sendEmail({
        to: replyTo,
        cc: cc ? normalizeAddresses(cc) : undefined,
        bcc: bcc ? normalizeAddresses(bcc) : undefined,
        from,
        subject: replySubject,
        textBody,
        htmlBody,
        inReplyTo: [originalMessageId],
        references: referencesHeader,
      });
      return { content: [{ type: 'text', text: `Reply sent successfully. Submission ID: ${submissionId}` }] };
    }
  • Schema definition for the reply_email tool. Defines the input schema with originalEmailId (required), optional to/cc/bcc/from/textBody/htmlBody fields, and a writeTool annotation.
    writeTool(
      'reply_email',
      'Reply to Email',
      description(
        'Reply to an existing email with Fastmail threading headers preserved automatically.',
        'Use when the user says "reply to this email", "answer the latest message from Alice", or wants a proper threaded response.',
        'Do not use for a brand-new outbound message; use send_email. Do not use when you only want to save a reply draft; use save_draft.',
      ),
      {
        type: 'object',
        properties: {
          originalEmailId: {
            type: 'string',
            description: 'ID of the email to reply to',
          },
          to: {
            ...addressListSchema,
            description: 'Recipient addresses as [{email, name?}] objects (optional, defaults to original sender)',
          },
          cc: {
            ...addressListSchema,
            description: 'CC addresses (optional)',
          },
          bcc: {
            ...addressListSchema,
            description: 'BCC addresses (optional)',
          },
          from: {
            type: 'string',
            description: 'Sender email address (optional, defaults to account primary email)',
          },
          textBody: {
            type: 'string',
            description: 'Plain text body (optional)',
          },
          htmlBody: {
            type: 'string',
            description: 'HTML body (optional)',
          },
        },
        required: ['originalEmailId'],
      },
  • The reply_email tool is registered as a case in the CallToolRequestSchema handler switch statement within createMcpServer() in mcp-server.ts.
      server.setRequestHandler(CallToolRequestSchema, async (request) => {
        const { name } = request.params;
        const args = coerceArgs(request.params.arguments);
    
        try {
          const client = context.getMailClient();
    
          switch (name) {
            case 'list_mailboxes': {
              const mailboxes = await client.getMailboxes();
              return { content: [{ type: 'text', text: JSON.stringify(mailboxes, null, 2) }] };
            }
            case 'list_emails': {
              const { mailboxId, limit = 20, offset = 0 } = args as any;
              const emails = await client.getEmails(mailboxId, limit, offset);
              return { content: [{ type: 'text', text: JSON.stringify(emails, null, 2) }] };
            }
            case 'get_email': {
              const { emailId } = args as any;
              if (!emailId) throw new McpError(ErrorCode.InvalidParams, 'emailId is required');
              const email = await client.getEmailById(emailId);
              return { content: [{ type: 'text', text: JSON.stringify(email, null, 2) }] };
            }
            case 'send_email': {
              const { to, cc, bcc, from, mailboxId, subject, textBody, htmlBody, inReplyTo, references } = args as any;
              const toAddrs = normalizeAddresses(to);
              if (toAddrs.length === 0) throw new McpError(ErrorCode.InvalidParams, 'to field is required and must be a non-empty array');
              if (!subject) throw new McpError(ErrorCode.InvalidParams, 'subject is required');
              if (!textBody && !htmlBody) throw new McpError(ErrorCode.InvalidParams, 'Either textBody or htmlBody is required');
              const submissionId = await client.sendEmail({
                to: toAddrs,
                cc: cc ? normalizeAddresses(cc) : undefined,
                bcc: bcc ? normalizeAddresses(bcc) : undefined,
                from,
                mailboxId,
                subject,
                textBody,
                htmlBody,
                inReplyTo: Array.isArray(inReplyTo) ? inReplyTo : (inReplyTo ? [inReplyTo] : undefined),
                references: Array.isArray(references) ? references : (references ? [references] : undefined),
              });
              return { content: [{ type: 'text', text: `Email sent successfully. Submission ID: ${submissionId}` }] };
            }
            case 'reply_email': {
              const { originalEmailId, to, cc, bcc, from, textBody, htmlBody } = args as any;
              if (!originalEmailId) throw new McpError(ErrorCode.InvalidParams, 'originalEmailId is required');
              if (!textBody && !htmlBody) throw new McpError(ErrorCode.InvalidParams, 'Either textBody or htmlBody is required');
              const originalEmail = await client.getEmailById(originalEmailId);
              const originalMessageId = originalEmail.messageId?.[0];
              if (!originalMessageId) throw new McpError(ErrorCode.InternalError, 'Original email does not have a Message-ID; cannot thread reply');
              const referencesHeader = [...(originalEmail.references || []), originalMessageId];
              let replySubject = originalEmail.subject || '';
              if (!/^Re:/i.test(replySubject)) replySubject = `Re: ${replySubject}`;
              const normalizedTo = to ? normalizeAddresses(to) : [];
              const replyTo = normalizedTo.length > 0
                ? normalizedTo
                : (originalEmail.from?.map((addr: any) => ({ email: addr.email, name: addr.name ?? null })).filter((a: any) => a.email) || []);
              if (replyTo.length === 0) {
                throw new McpError(ErrorCode.InvalidParams, 'Could not determine reply recipient. Please provide "to" explicitly.');
              }
              const submissionId = await client.sendEmail({
                to: replyTo,
                cc: cc ? normalizeAddresses(cc) : undefined,
                bcc: bcc ? normalizeAddresses(bcc) : undefined,
                from,
                subject: replySubject,
                textBody,
                htmlBody,
                inReplyTo: [originalMessageId],
                references: referencesHeader,
              });
              return { content: [{ type: 'text', text: `Reply sent successfully. Submission ID: ${submissionId}` }] };
            }
            case 'save_draft': {
              const { to, cc, bcc, from, subject, textBody, htmlBody, inReplyTo, references } = args as any;
              const toAddrs = normalizeAddresses(to);
              if (toAddrs.length === 0) throw new McpError(ErrorCode.InvalidParams, 'to field is required and must be a non-empty array');
              if (!subject) throw new McpError(ErrorCode.InvalidParams, 'subject is required');
              if (!textBody && !htmlBody) throw new McpError(ErrorCode.InvalidParams, 'Either textBody or htmlBody is required');
              const draftId = await client.saveDraft({
                to: toAddrs,
                cc: cc ? normalizeAddresses(cc) : undefined,
                bcc: bcc ? normalizeAddresses(bcc) : undefined,
                from,
                subject,
                textBody,
                htmlBody,
                inReplyTo: Array.isArray(inReplyTo) ? inReplyTo : (inReplyTo ? [inReplyTo] : undefined),
                references: Array.isArray(references) ? references : (references ? [references] : undefined),
              });
              return { content: [{ type: 'text', text: `Draft saved successfully. Draft ID: ${draftId}` }] };
            }
            case 'create_draft': {
              const { to, cc, bcc, from, mailboxId, subject, textBody, htmlBody } = args as any;
              if (!to?.length && !subject && !textBody && !htmlBody) {
                throw new McpError(ErrorCode.InvalidParams, 'At least one of to, subject, textBody, or htmlBody must be provided');
              }
              const emailId = await client.createDraft({
                to: to ? normalizeAddresses(to) : undefined,
                cc: cc ? normalizeAddresses(cc) : undefined,
                bcc: bcc ? normalizeAddresses(bcc) : undefined,
                from,
                mailboxId,
                subject,
                textBody,
                htmlBody,
              });
              return { content: [{ type: 'text', text: `Draft created successfully. Email ID: ${emailId}` }] };
            }
            case 'search_emails': {
              const { query, limit = 20, offset = 0 } = args as any;
              if (!query) throw new McpError(ErrorCode.InvalidParams, 'query is required');
              const emails = await client.searchEmails(query, limit, offset);
              return { content: [{ type: 'text', text: JSON.stringify(emails, null, 2) }] };
            }
            case 'list_identities': {
              const identities = await client.getIdentities();
              return { content: [{ type: 'text', text: JSON.stringify(identities, null, 2) }] };
            }
            case 'get_recent_emails': {
              const { limit = 10, mailboxName = 'inbox', offset = 0 } = args as any;
              const emails = await client.getRecentEmails(limit, mailboxName, offset);
              return { content: [{ type: 'text', text: JSON.stringify(emails, null, 2) }] };
            }
            case 'mark_email_read': {
              const { emailId, read = true } = args as any;
              if (!emailId) throw new McpError(ErrorCode.InvalidParams, 'emailId is required');
              await client.markEmailRead(emailId, read);
              return { content: [{ type: 'text', text: `Email ${read ? 'marked as read' : 'marked as unread'} successfully` }] };
            }
            case 'delete_email': {
              const { emailId } = args as any;
              if (!emailId) throw new McpError(ErrorCode.InvalidParams, 'emailId is required');
              await client.deleteEmail(emailId);
              return { content: [{ type: 'text', text: 'Email deleted successfully (moved to trash)' }] };
            }
            case 'move_email': {
              const { emailId, targetMailboxId } = args as any;
              if (!emailId || !targetMailboxId) throw new McpError(ErrorCode.InvalidParams, 'emailId and targetMailboxId are required');
              await client.moveEmail(emailId, targetMailboxId);
              return { content: [{ type: 'text', text: 'Email moved successfully' }] };
            }
            case 'add_labels': {
              const { emailId, mailboxIds: rawMailboxIds } = args as any;
              if (!emailId) throw new McpError(ErrorCode.InvalidParams, 'emailId is required');
              const mailboxIds = normalizeStringArray(rawMailboxIds);
              if (mailboxIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'mailboxIds array is required and must not be empty');
              await client.addLabels(emailId, mailboxIds);
              return { content: [{ type: 'text', text: 'Labels added successfully to email' }] };
            }
            case 'remove_labels': {
              const { emailId, mailboxIds: rawMailboxIds } = args as any;
              if (!emailId) throw new McpError(ErrorCode.InvalidParams, 'emailId is required');
              const mailboxIds = normalizeStringArray(rawMailboxIds);
              if (mailboxIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'mailboxIds array is required and must not be empty');
              await client.removeLabels(emailId, mailboxIds);
              return { content: [{ type: 'text', text: 'Labels removed successfully from email' }] };
            }
            case 'get_email_attachments': {
              const { emailId } = args as any;
              if (!emailId) throw new McpError(ErrorCode.InvalidParams, 'emailId is required');
              const attachments = await client.getEmailAttachments(emailId);
              return { content: [{ type: 'text', text: JSON.stringify(attachments, null, 2) }] };
            }
            case 'download_attachment': {
              const { emailId, attachmentId, savePath } = args as any;
              if (!emailId || !attachmentId) throw new McpError(ErrorCode.InvalidParams, 'emailId and attachmentId are required');
              try {
                if (savePath) {
                  const result = await client.downloadAttachmentToFile(emailId, attachmentId, savePath);
                  return { content: [{ type: 'text', text: `Saved to: ${savePath} (${result.bytesWritten} bytes)` }] };
                }
                const downloadUrl = await client.downloadAttachment(emailId, attachmentId);
                return { content: [{ type: 'text', text: `Download URL: ${downloadUrl}` }] };
              } catch {
                throw new McpError(
                  ErrorCode.InternalError,
                  'Attachment download failed. Verify emailId and attachmentId and try again.',
                );
              }
            }
            case 'advanced_search': {
              const { query, from, to, subject, hasAttachment, isUnread, mailboxId, after, before, limit, offset } = args as any;
              const emails = await client.advancedSearch({ query, from, to, subject, hasAttachment, isUnread, mailboxId, after, before, limit, offset });
              return { content: [{ type: 'text', text: JSON.stringify(emails, null, 2) }] };
            }
            case 'get_thread': {
              const { threadId } = args as any;
              if (!threadId) throw new McpError(ErrorCode.InvalidParams, 'threadId is required');
              try {
                const thread = await client.getThread(threadId);
                return { content: [{ type: 'text', text: JSON.stringify(thread, null, 2) }] };
              } catch (error) {
                throw new McpError(ErrorCode.InternalError, `Thread access failed: ${error instanceof Error ? error.message : String(error)}`);
              }
            }
            case 'get_mailbox_stats': {
              const { mailboxId } = args as any;
              const stats = await client.getMailboxStats(mailboxId);
              return { content: [{ type: 'text', text: JSON.stringify(stats, null, 2) }] };
            }
            case 'get_account_summary': {
              const summary = await client.getAccountSummary();
              return { content: [{ type: 'text', text: JSON.stringify(summary, null, 2) }] };
            }
            case 'bulk_mark_read': {
              const { emailIds: rawEmailIds, read = true } = args as any;
              const emailIds = normalizeStringArray(rawEmailIds);
              if (emailIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'emailIds array is required and must not be empty');
              await client.bulkMarkRead(emailIds, read);
              return { content: [{ type: 'text', text: `${emailIds.length} emails ${read ? 'marked as read' : 'marked as unread'} successfully` }] };
            }
            case 'bulk_move': {
              const { emailIds: rawEmailIdsBM, targetMailboxId } = args as any;
              const emailIds = normalizeStringArray(rawEmailIdsBM);
              if (emailIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'emailIds array is required and must not be empty');
              if (!targetMailboxId) throw new McpError(ErrorCode.InvalidParams, 'targetMailboxId is required');
              await client.bulkMove(emailIds, targetMailboxId);
              return { content: [{ type: 'text', text: `${emailIds.length} emails moved successfully` }] };
            }
            case 'bulk_delete': {
              const { emailIds: rawEmailIdsBD } = args as any;
              const emailIds = normalizeStringArray(rawEmailIdsBD);
              if (emailIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'emailIds array is required and must not be empty');
              await client.bulkDelete(emailIds);
              return { content: [{ type: 'text', text: `${emailIds.length} emails deleted successfully (moved to trash)` }] };
            }
            case 'bulk_add_labels': {
              const { emailIds: rawEmailIdsBAL, mailboxIds: rawMailboxIdsBAL } = args as any;
              const emailIds = normalizeStringArray(rawEmailIdsBAL);
              const mailboxIds = normalizeStringArray(rawMailboxIdsBAL);
              if (emailIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'emailIds array is required and must not be empty');
              if (mailboxIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'mailboxIds array is required and must not be empty');
              await client.bulkAddLabels(emailIds, mailboxIds);
              return { content: [{ type: 'text', text: `Labels added successfully to ${emailIds.length} emails` }] };
            }
            case 'bulk_remove_labels': {
              const { emailIds: rawEmailIdsBRL, mailboxIds: rawMailboxIdsBRL } = args as any;
              const emailIds = normalizeStringArray(rawEmailIdsBRL);
              const mailboxIds = normalizeStringArray(rawMailboxIdsBRL);
              if (emailIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'emailIds array is required and must not be empty');
              if (mailboxIds.length === 0) throw new McpError(ErrorCode.InvalidParams, 'mailboxIds array is required and must not be empty');
              await client.bulkRemoveLabels(emailIds, mailboxIds);
              return { content: [{ type: 'text', text: `Labels removed successfully from ${emailIds.length} emails` }] };
            }
            case 'check_function_availability': {
              const session = await client.getSession();
              const availability = {
                email: {
                  available: true,
                  functions: [
                    'list_mailboxes', 'list_emails', 'get_email', 'send_email', 'create_draft', 'search_emails',
                    'get_recent_emails', 'mark_email_read', 'delete_email', 'move_email',
                    'get_email_attachments', 'download_attachment', 'advanced_search', 'get_thread',
                    'get_mailbox_stats', 'get_account_summary', 'bulk_mark_read', 'bulk_move', 'bulk_delete',
                    'add_labels', 'remove_labels', 'bulk_add_labels', 'bulk_remove_labels',
                  ],
                },
                identity: {
                  available: true,
                  functions: ['list_identities'],
                },
                capabilities: Object.keys(session.capabilities),
              };
              return { content: [{ type: 'text', text: JSON.stringify(availability, null, 2) }] };
            }
            case 'test_bulk_operations': {
              const { dryRun = true, limit = 3 } = args as any;
              const testLimit = Math.min(Math.max(limit, 1), 10);
              const emails = await client.getRecentEmails(testLimit, 'inbox');
              if (emails.items.length === 0) {
                return {
                  content: [
                    {
                      type: 'text',
                      text: 'No emails found for bulk operation testing. Try sending yourself a test email first.',
                    },
                  ],
                };
              }
              const emailIds = emails.items.slice(0, testLimit).map((email) => email.id);
              const operations = [
                {
                  name: 'bulk_mark_read',
                  description: `Mark ${emailIds.length} emails as read`,
                  parameters: { emailIds, read: true },
                },
                {
                  name: 'bulk_mark_read (undo)',
                  description: `Mark ${emailIds.length} emails as unread (undo previous)`,
                  parameters: { emailIds, read: false },
                },
              ];
              const results = {
                testEmails: emails.items.map((email) => ({
                  id: email.id,
                  subject: email.subject,
                  from: email.from?.[0]?.email || 'unknown',
                  receivedAt: email.receivedAt,
                })),
                operations: [] as any[],
              };
              if (dryRun) {
                results.operations = operations.map((op) => ({
                  ...op,
                  status: 'DRY RUN - Would execute but not actually performed',
                  executed: false,
                }));
                return {
                  content: [
                    {
                      type: 'text',
                      text: `BULK OPERATIONS TEST (DRY RUN)\n\n${JSON.stringify(results, null, 2)}\n\nTo actually execute the test, set dryRun: false`,
                    },
                  ],
                };
              }
              for (const operation of operations) {
                try {
                  await client.bulkMarkRead(operation.parameters.emailIds, operation.parameters.read);
                  results.operations.push({
                    ...operation,
                    status: 'SUCCESS',
                    executed: true,
                    timestamp: new Date().toISOString(),
                  });
                  await new Promise((resolve) => setTimeout(resolve, 500));
                } catch (error) {
                  results.operations.push({
                    ...operation,
                    status: 'FAILED',
                    executed: false,
                    error: error instanceof Error ? error.message : String(error),
                    timestamp: new Date().toISOString(),
                  });
                }
              }
              return {
                content: [
                  {
                    type: 'text',
                    text: `BULK OPERATIONS TEST (EXECUTED)\n\n${JSON.stringify(results, null, 2)}`,
                  },
                ],
              };
            }
            default:
              throw new McpError(ErrorCode.MethodNotFound, `Unknown tool: ${name}`);
          }
        } catch (error) {
          if (error instanceof McpError) throw error;
          throw new McpError(
            ErrorCode.InternalError,
            `Tool execution failed: ${error instanceof Error ? error.message : String(error)}`,
          );
        }
      });
    
      return server;
    }
  • Helper function used by reply_email handler to normalize address inputs (strings, JSON strings, arrays of objects) into EmailAddress[] format.
    function normalizeAddresses(addrs: unknown): EmailAddress[] {
      let resolved: unknown = addrs;
      if (typeof resolved === 'string') {
        try {
          resolved = JSON.parse(resolved);
        } catch {
          return (resolved as string)
            .split(',')
            .map((s: string) => ({ email: s.trim() }))
            .filter((a: { email: string }) => a.email);
        }
      }
      if (!Array.isArray(resolved)) return [];
      return resolved.map((addr: unknown) => {
        if (typeof addr === 'string') return { email: addr };
        if (addr && typeof addr === 'object' && 'email' in addr) {
          return {
            email: (addr as Record<string, unknown>).email as string,
            name: ((addr as Record<string, unknown>).name ?? null) as string | null,
          };
        }
        throw new Error(`Invalid address format: ${JSON.stringify(addr)}`);
      });
    }
  • The JmapClient.sendEmail method called by the reply_email handler to actually send the reply with inReplyTo and references threading headers set.
    async sendEmail(email: {
      to: EmailAddress[];
      cc?: EmailAddress[];
      bcc?: EmailAddress[];
      subject: string;
      textBody?: string;
      htmlBody?: string;
      from?: string;
      mailboxId?: string;
      inReplyTo?: string[];
      references?: string[];
    }): Promise<string> {
Behavior4/5

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

The description discloses that threading headers are preserved automatically, which adds behavioral context beyond the annotations. Annotations already indicate readOnlyHint=false and destructiveHint=false, so the description adds meaningful detail without contradiction.

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 four sentences, front-loaded with the main action, and contains no superfluous text. Each sentence adds value: purpose, use cases, and exclusions.

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 the tool's simplicity and lack of output schema, the description adequately covers purpose, usage, and exclusions. It does not explain return values or side effects, but these are generally inferred for an email reply action.

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 for all 7 parameters, so the description does not need to add parameter details. It does not provide extra commentary on parameters, which matches the baseline expectation.

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: 'Reply to an existing email with Fastmail threading headers preserved automatically.' It uses specific verbs and resources, and distinguishes itself from sibling tools like send_email and save_draft.

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?

Explicitly provides when to use (e.g., 'when the user says "reply to this email"') and when not to use, with direct references to alternative tools (send_email, save_draft). This is excellent guidance.

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

Install Server

Other Tools

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/as-j/fastmail-mcp'

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