@softeria/ms-365-mcp-server 0.131.0 → 0.131.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1486,7 +1486,7 @@
1486
1486
  "toolName": "send-chat-message",
1487
1487
  "presets": ["teams", "work"],
1488
1488
  "workScopes": ["ChatMessage.Send"],
1489
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1489
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1490
1490
  },
1491
1491
  {
1492
1492
  "pathPattern": "/me/joinedTeams",
@@ -1572,7 +1572,7 @@
1572
1572
  "toolName": "send-channel-message",
1573
1573
  "presets": ["teams", "work"],
1574
1574
  "workScopes": ["ChannelMessage.Send"],
1575
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1575
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1576
1576
  },
1577
1577
  {
1578
1578
  "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
@@ -1580,7 +1580,7 @@
1580
1580
  "toolName": "reply-to-channel-message",
1581
1581
  "presets": ["teams", "work"],
1582
1582
  "workScopes": ["ChannelMessage.Send"],
1583
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1583
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1584
1584
  },
1585
1585
  {
1586
1586
  "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
@@ -1659,7 +1659,7 @@
1659
1659
  "toolName": "reply-to-chat-message",
1660
1660
  "presets": ["teams", "work"],
1661
1661
  "workScopes": ["ChatMessage.Send"],
1662
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1662
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1663
1663
  },
1664
1664
  {
1665
1665
  "pathPattern": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softeria/ms-365-mcp-server",
3
- "version": "0.131.0",
3
+ "version": "0.131.1",
4
4
  "description": " A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1486,7 +1486,7 @@
1486
1486
  "toolName": "send-chat-message",
1487
1487
  "presets": ["teams", "work"],
1488
1488
  "workScopes": ["ChatMessage.Send"],
1489
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1489
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1490
1490
  },
1491
1491
  {
1492
1492
  "pathPattern": "/me/joinedTeams",
@@ -1572,7 +1572,7 @@
1572
1572
  "toolName": "send-channel-message",
1573
1573
  "presets": ["teams", "work"],
1574
1574
  "workScopes": ["ChannelMessage.Send"],
1575
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1575
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1576
1576
  },
1577
1577
  {
1578
1578
  "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
@@ -1580,7 +1580,7 @@
1580
1580
  "toolName": "reply-to-channel-message",
1581
1581
  "presets": ["teams", "work"],
1582
1582
  "workScopes": ["ChannelMessage.Send"],
1583
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1583
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1584
1584
  },
1585
1585
  {
1586
1586
  "pathPattern": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies",
@@ -1659,7 +1659,7 @@
1659
1659
  "toolName": "reply-to-chat-message",
1660
1660
  "presets": ["teams", "work"],
1661
1661
  "workScopes": ["ChatMessage.Send"],
1662
- "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API."
1662
+ "llmTip": "Use contentType 'html' in the body — plain text contentType gets mangled by Graph API. To @mention someone, put an <at id=\"0\">Name</at> tag in the html content and add a mentions array to the request body, as a sibling of the body property (not a separate top-level tool parameter): { body: { contentType: 'html', content: 'Hi <at id=\"0\">Name</at>' }, mentions: [{ id: 0, mentionText: 'Name', mentioned: { user: { id: '<aad-user-id>', displayName: 'Name', userIdentityType: 'aadUser' } } }] }. Each mention id must match its <at id> value; include userIdentityType: 'aadUser' or Graph returns 400 'value without a type name'."
1663
1663
  },
1664
1664
  {
1665
1665
  "pathPattern": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction",