msexchange-mcp
Version:
MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API
32 lines • 1.86 kB
JavaScript
export { helloWorldTool } from './helloWorld.js';
export { getMailboxProfileTool } from './getMailboxProfile.js';
export { listAccountsTool } from './listAccounts.js';
export { queryEmailsTool } from './queryEmails.js';
export { queryEmailsBatchTool } from './queryEmailsBatch.js';
export { queryEmailsSummaryTool } from './queryEmailsSummary.js';
export { simpleEmailSearchTool } from './simpleEmailSearch.js';
export { smartEmailSearchTool } from './smartEmailSearch.js';
export { unifiedEmailSearchTool } from './unifiedEmailSearch.js';
export { manageEmailAliasesTool } from './manageEmailAliases.js';
export { getEmailByIdTool } from './getEmailById.js';
export { getEmailContentTool } from './getEmailContent.js';
export { findConversationTool } from './findConversation.js';
export { listFoldersTool } from './listFolders.js';
export { createFolderTool } from './createFolder.js';
export { setupOrganizationFoldersTool } from './setupOrganizationFolders.js';
export { createMailRuleTool } from './createMailRule.js';
export { listMailRulesTool } from './listMailRules.js';
export { modifyMailRuleTool } from './modifyMailRule.js';
export { deleteMailRuleTool } from './deleteMailRule.js';
export { moveEmailTool } from './moveEmail.js';
export { updateEmailCategoriesTool } from './updateEmailCategories.js';
export { markAsReadTool, markAsUnreadTool } from './markAsRead.js';
export { sendEmailTool } from './sendEmail.js';
export { createDraftTool } from './createDraft.js';
export { addAttachmentToDraftTool } from './addAttachmentToDraft.js';
export { listAttachmentsTool } from './listAttachments.js';
export { getAttachmentTool } from './getAttachment.js';
export { replyEmailTool } from './replyEmail.js';
export { forwardEmailTool } from './forwardEmail.js';
export { deleteEmailTool } from './deleteEmail.js';
//# sourceMappingURL=index.js.map