Microsoft & Azure intelligence →
Association is based on retained identity fields; it does not by itself prove first-party publication.
Enables AI assistants to manage multiple Outlook/Microsoft 365 mailboxes simultaneously through MCP tools, with local OAuth token storage
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
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.
| Canonical slug | mcp-server-for-multiple-outlook-accounts-8da33dd9 | Deployment | Local Only |
|---|---|---|---|
| Canonical package | — | Repository | uaixo/MCP-Server-For-Multiple-Outlook-Accounts |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 90% |
| Publication | Draft | Official distribution | Not verified |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| source_git | uaixo/mcp-server-for-multiple-outlook-accounts | 61147a78561e2ae92554aadf184435836b4ee6b8 | 1 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| source_gituaixo/mcp-server-for-multiple-outlook-accounts | 61147a78561e2ae92554aadf184435836b4ee6b8Current | Aug 25, 2026 | 8 toolsSucceeded · 0 resources · 0 prompts | Evidence restricted |
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
No public current-version evidence is available yet.
| Tool | Category | Annotations | Risk |
|---|---|---|---|
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 | — |
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
No verified package installation command is available in the retained catalog evidence.
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.
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.
Association is based on retained identity fields; it does not by itself prove first-party publication.
Curated product and capability guides containing this catalog record.