@alfe.ai/microsoft-mcp 0.1.9 → 0.1.11
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.
- package/dist/server.d.cts +4 -1
- package/dist/server.d.ts +4 -1
- package/package.json +2 -2
package/dist/server.d.cts
CHANGED
|
@@ -786,6 +786,7 @@ declare class ChatApi extends ApiBase {
|
|
|
786
786
|
attachments: {
|
|
787
787
|
id: string;
|
|
788
788
|
uploadUrl: string;
|
|
789
|
+
uploadHeaders: Record<string, string>;
|
|
789
790
|
downloadUrl: string;
|
|
790
791
|
s3Key: string;
|
|
791
792
|
expiresAt: string;
|
|
@@ -1607,7 +1608,9 @@ declare class IntegrationsApi extends ApiBase {
|
|
|
1607
1608
|
config?: Record<string, unknown>;
|
|
1608
1609
|
}): Promise<IntegrationInstall>;
|
|
1609
1610
|
removeIntegration(integrationId: string): Promise<IntegrationInstall>;
|
|
1610
|
-
getOAuthUrl(provider: string, scopes?: string[]
|
|
1611
|
+
getOAuthUrl(provider: string, scopes?: string[], options?: {
|
|
1612
|
+
shop?: string;
|
|
1613
|
+
}): Promise<{
|
|
1611
1614
|
url: string;
|
|
1612
1615
|
provider: string;
|
|
1613
1616
|
expiresIn: number;
|
package/dist/server.d.ts
CHANGED
|
@@ -786,6 +786,7 @@ declare class ChatApi extends ApiBase {
|
|
|
786
786
|
attachments: {
|
|
787
787
|
id: string;
|
|
788
788
|
uploadUrl: string;
|
|
789
|
+
uploadHeaders: Record<string, string>;
|
|
789
790
|
downloadUrl: string;
|
|
790
791
|
s3Key: string;
|
|
791
792
|
expiresAt: string;
|
|
@@ -1607,7 +1608,9 @@ declare class IntegrationsApi extends ApiBase {
|
|
|
1607
1608
|
config?: Record<string, unknown>;
|
|
1608
1609
|
}): Promise<IntegrationInstall>;
|
|
1609
1610
|
removeIntegration(integrationId: string): Promise<IntegrationInstall>;
|
|
1610
|
-
getOAuthUrl(provider: string, scopes?: string[]
|
|
1611
|
+
getOAuthUrl(provider: string, scopes?: string[], options?: {
|
|
1612
|
+
shop?: string;
|
|
1613
|
+
}): Promise<{
|
|
1611
1614
|
url: string;
|
|
1612
1615
|
provider: string;
|
|
1613
1616
|
expiresIn: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/microsoft-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Microsoft 365 MCP server — multi-account Microsoft Graph access using Alfe OAuth credentials with server-mediated token refresh",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/server.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
23
23
|
"zod": "^4.0.5",
|
|
24
24
|
"@alfe.ai/config": "0.4.1",
|
|
25
|
-
"@alfe.ai/agent-api-client": "0.
|
|
25
|
+
"@alfe.ai/agent-api-client": "0.17.0"
|
|
26
26
|
},
|
|
27
27
|
"license": "UNLICENSED",
|
|
28
28
|
"homepage": "https://alfe.ai",
|