MCP server intelligence profile

MCP Server for Multiple Outlook Accounts MCP Server

Enables AI assistants to manage multiple Outlook/Microsoft 365 mailboxes simultaneously through MCP tools, with local OAuth token storage

Local Onlyuaixo
Awaiting current scanSource Git · 61147a78561e2ae92554aadf184435836b4ee6b8

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

No verified installation or connection method is available in the retained evidence yet.

Identity

Canonical slugmcp-server-for-multiple-outlook-accounts-8da33dd9DeploymentLocal Only
Canonical packageRepositoryuaixo/MCP-Server-For-Multiple-Outlook-Accounts
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gituaixo/mcp-server-for-multiple-outlook-accounts61147a78561e2ae92554aadf184435836b4ee6b81Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gituaixo/mcp-server-for-multiple-outlook-accounts61147a78561e2ae92554aadf184435836b4ee6b8CurrentAug 25, 20268 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
mcp-server-for-multiple-outlook-accountsServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
create_draftCompose a draft email (recipients, subject, body, optional attachments) and save it to the account's Drafts. The draft is NOT sent. Recipients accept 'addr' or 'Display Name <addr>'. Attachments are each a local path (allow-listed) OR inline base64; large files (over ~3 MB) are uploaded via an upload session. Pass reply_to_conversation_id to draft a threaded reply.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "to": {
      "minItems": 1,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "cc": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "bcc": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "subject": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "is_html": {
      "type": "boolean"
    },
    "reply_to_conversation_id": {
      "type": "string"
    },
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "filename": {
            "type": "string"
          },
          "mime_type": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "content_base64": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "to",
    "body"
  ]
}
Annotations
{
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesNon-destructiveNon-idempotentOpen world
create_labelCreate a new category (tag) or mail folder (location). kind='category' makes a tag (optionally with a colour preset); kind='folder' makes a folder, nested under parent_folder_id when given.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "enum": [
        "category",
        "folder"
      ]
    },
    "color": {
      "type": "string"
    },
    "parent_folder_id": {
      "type": "string"
    }
  },
  "required": [
    "name"
  ]
}
Annotations
{
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesNon-destructiveNon-idempotentOpen world
list_accountsList the Outlook / Microsoft 365 mailboxes connected to this server. Use the returned identities as the 'account' selector for other tools.
Input schema
{
  "type": "object",
  "properties": {}
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": false
}
Read onlyNon-destructiveIdempotentClosed world
list_labelsList the account's categories (tags) and mail folders (locations), each with a stable id, display name, kind, and whether it is a system label. Use these ids with organize_mail.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    }
  }
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
Read onlyNon-destructiveIdempotentOpen world
organize_mailApply organisation changes to exactly one target — a conversation OR a single message. Add/remove category labels, mark read/unread, and/or move the mail: archive (remove from Inbox), trash (Deleted Items), or junk (Junk Email). archive/trash/junk are mutually exclusive. At least one change is required. Applied to a conversation, it affects every message. Idempotent: if a conversation is only partially updated before an error, re-running the same request safely finishes it.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "conversation_id": {
      "type": "string"
    },
    "message_id": {
      "type": "string"
    },
    "add_labels": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "remove_labels": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "mark_read": {
      "type": "boolean"
    },
    "archive": {
      "type": "boolean"
    },
    "trash": {
      "type": "boolean"
    },
    "junk": {
      "type": "boolean"
    }
  }
}
Annotations
{
  "readOnlyHint": false,
  "destructiveHint": true,
  "idempotentHint": true,
  "openWorldHint": true
}
WritesDestructiveIdempotentOpen world
read_conversationRead every message in a conversation: headers, plain-text body, and applied labels. The payload is bounded; older messages and long bodies may be truncated.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "conversation_id": {
      "type": "string"
    }
  },
  "required": [
    "conversation_id"
  ]
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
Read onlyNon-destructiveIdempotentOpen world
search_conversationsSearch a mailbox for conversations. Query supports free text plus operators: from:, to:, subject:, is:read/is:unread, has:attachment, after:YYYY-MM-DD, before:YYYY-MM-DD. Free-text/subject search cannot be combined with structured filters in one query.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "query": {
      "type": "string"
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "page_token": {
      "type": "string"
    }
  },
  "required": [
    "query"
  ]
}
Annotations
{
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
Read onlyNon-destructiveIdempotentOpen world
send_messageSend an email immediately. This is irreversible. Same inputs as create_draft; pass reply_to_conversation_id to send a threaded reply. Delivery is guaranteed not to duplicate under retry.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "account": {
      "type": "string"
    },
    "to": {
      "minItems": 1,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "cc": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "bcc": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "subject": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "is_html": {
      "type": "boolean"
    },
    "reply_to_conversation_id": {
      "type": "string"
    },
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "filename": {
            "type": "string"
          },
          "mime_type": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "content_base64": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "to",
    "body"
  ]
}
Annotations
{
  "readOnlyHint": false,
  "destructiveHint": true,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesDestructiveNon-idempotentOpen world

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

MCP Server for Multiple Outlook Accounts MCP Server questions

How do I install MCP Server for Multiple Outlook Accounts MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does MCP Server for Multiple Outlook Accounts MCP Server provide?

MCP Server for Multiple Outlook Accounts MCP Server exposed 8 tools during independent protocol observation, including create_draft, create_label, list_accounts, list_labels, organize_mail, read_conversation, search_conversations, send_message.

Is MCP Server for Multiple Outlook Accounts MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Microsoft & Azure intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.