integrate-sdk 0.7.51 → 0.7.53
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/index.js +2 -2
- package/dist/server.js +2 -2
- package/index.ts +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2652,8 +2652,8 @@ function notionIntegration(config = {}) {
|
|
|
2652
2652
|
redirectUri: config.redirectUri,
|
|
2653
2653
|
config: {
|
|
2654
2654
|
owner: config.owner || "user",
|
|
2655
|
-
|
|
2656
|
-
|
|
2655
|
+
authorization_endpoint: "https://api.notion.com/v1/oauth/authorize",
|
|
2656
|
+
token_endpoint: "https://api.notion.com/v1/oauth/token",
|
|
2657
2657
|
...config
|
|
2658
2658
|
}
|
|
2659
2659
|
};
|
package/dist/server.js
CHANGED
|
@@ -2319,8 +2319,8 @@ function notionIntegration(config = {}) {
|
|
|
2319
2319
|
redirectUri: config.redirectUri,
|
|
2320
2320
|
config: {
|
|
2321
2321
|
owner: config.owner || "user",
|
|
2322
|
-
|
|
2323
|
-
|
|
2322
|
+
authorization_endpoint: "https://api.notion.com/v1/oauth/authorize",
|
|
2323
|
+
token_endpoint: "https://api.notion.com/v1/oauth/token",
|
|
2324
2324
|
...config
|
|
2325
2325
|
}
|
|
2326
2326
|
};
|
package/index.ts
CHANGED
|
@@ -34,6 +34,7 @@ export * from './src/index.js';
|
|
|
34
34
|
import { createMCPClient } from './src/client.js';
|
|
35
35
|
import { githubIntegration } from './src/integrations/github.js';
|
|
36
36
|
import { gmailIntegration } from './src/integrations/gmail.js';
|
|
37
|
+
import { notionIntegration } from './src/integrations/notion.js';
|
|
37
38
|
|
|
38
39
|
/**
|
|
39
40
|
* Default MCP Client with all integrations pre-configured
|
|
@@ -63,6 +64,7 @@ export const client = createMCPClient({
|
|
|
63
64
|
integrations: [
|
|
64
65
|
githubIntegration(),
|
|
65
66
|
gmailIntegration(),
|
|
67
|
+
notionIntegration(),
|
|
66
68
|
],
|
|
67
69
|
});
|
|
68
70
|
|