integrate-sdk 0.8.42-dev.0 → 0.8.42

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.
Files changed (47) hide show
  1. package/dist/adapters/auto-routes.js +1 -1
  2. package/dist/adapters/base-handler.js +561 -0
  3. package/dist/adapters/index.js +1 -1
  4. package/dist/adapters/nextjs.js +1 -1
  5. package/dist/adapters/node.js +1 -1
  6. package/dist/adapters/svelte-kit.js +1 -1
  7. package/dist/adapters/tanstack-start.js +1 -1
  8. package/dist/ai/cloudflare.d.ts +158 -0
  9. package/dist/ai/cloudflare.d.ts.map +1 -0
  10. package/dist/ai/cloudflare.js +4249 -0
  11. package/dist/ai/langchain.d.ts +139 -0
  12. package/dist/ai/langchain.d.ts.map +1 -0
  13. package/dist/ai/langchain.js +4237 -0
  14. package/dist/ai/llamaindex.d.ts +125 -0
  15. package/dist/ai/llamaindex.d.ts.map +1 -0
  16. package/dist/ai/llamaindex.js +4236 -0
  17. package/dist/ai/mastra.d.ts +138 -0
  18. package/dist/ai/mastra.d.ts.map +1 -0
  19. package/dist/ai/mastra.js +4240 -0
  20. package/dist/index.js +1 -1
  21. package/dist/oauth.js +1 -1
  22. package/dist/server.js +1 -1
  23. package/dist/src/ai/cloudflare.d.ts +158 -0
  24. package/dist/src/ai/cloudflare.d.ts.map +1 -0
  25. package/dist/src/ai/langchain.d.ts +139 -0
  26. package/dist/src/ai/langchain.d.ts.map +1 -0
  27. package/dist/src/ai/llamaindex.d.ts +125 -0
  28. package/dist/src/ai/llamaindex.d.ts.map +1 -0
  29. package/dist/src/ai/mastra.d.ts +138 -0
  30. package/dist/src/ai/mastra.d.ts.map +1 -0
  31. package/dist/src/integrations/vercel-ai.d.ts +127 -0
  32. package/dist/src/integrations/vercel-ai.d.ts.map +1 -0
  33. package/dist/src/plugins/generic.d.ts +99 -0
  34. package/dist/src/plugins/generic.d.ts.map +1 -0
  35. package/dist/src/plugins/github-client.d.ts +320 -0
  36. package/dist/src/plugins/github-client.d.ts.map +1 -0
  37. package/dist/src/plugins/github.d.ts +89 -0
  38. package/dist/src/plugins/github.d.ts.map +1 -0
  39. package/dist/src/plugins/gmail-client.d.ts +106 -0
  40. package/dist/src/plugins/gmail-client.d.ts.map +1 -0
  41. package/dist/src/plugins/gmail.d.ts +87 -0
  42. package/dist/src/plugins/gmail.d.ts.map +1 -0
  43. package/dist/src/plugins/server-client.d.ts +18 -0
  44. package/dist/src/plugins/server-client.d.ts.map +1 -0
  45. package/dist/src/plugins/types.d.ts +70 -0
  46. package/dist/src/plugins/types.d.ts.map +1 -0
  47. package/package.json +2 -2
@@ -0,0 +1,106 @@
1
+ /**
2
+ * Gmail Plugin Client Types
3
+ * Fully typed interface for Gmail plugin methods
4
+ */
5
+ import type { MCPToolCallResponse } from "../protocol/messages.js";
6
+ /**
7
+ * Gmail Email Message
8
+ */
9
+ export interface GmailMessage {
10
+ id: string;
11
+ threadId: string;
12
+ labelIds?: string[];
13
+ snippet?: string;
14
+ payload?: {
15
+ headers?: Array<{
16
+ name: string;
17
+ value: string;
18
+ }>;
19
+ body?: {
20
+ data?: string;
21
+ size?: number;
22
+ };
23
+ parts?: Array<{
24
+ mimeType?: string;
25
+ body?: {
26
+ data?: string;
27
+ size?: number;
28
+ };
29
+ }>;
30
+ };
31
+ sizeEstimate?: number;
32
+ historyId?: string;
33
+ internalDate?: string;
34
+ }
35
+ /**
36
+ * Gmail Label
37
+ */
38
+ export interface GmailLabel {
39
+ id: string;
40
+ name: string;
41
+ type?: "system" | "user";
42
+ messageListVisibility?: "show" | "hide";
43
+ labelListVisibility?: "labelShow" | "labelShowIfUnread" | "labelHide";
44
+ color?: {
45
+ textColor?: string;
46
+ backgroundColor?: string;
47
+ };
48
+ }
49
+ /**
50
+ * Gmail Draft
51
+ */
52
+ export interface GmailDraft {
53
+ id: string;
54
+ message: GmailMessage;
55
+ }
56
+ /**
57
+ * Gmail Plugin Client Interface
58
+ * Provides type-safe methods for all Gmail operations
59
+ */
60
+ export interface GmailPluginClient {
61
+ /**
62
+ * Send a message
63
+ */
64
+ sendMessage(params: {
65
+ to: string | string[];
66
+ subject: string;
67
+ body: string;
68
+ cc?: string | string[];
69
+ bcc?: string | string[];
70
+ from?: string;
71
+ replyTo?: string;
72
+ html?: boolean;
73
+ attachments?: Array<{
74
+ filename: string;
75
+ content: string;
76
+ encoding?: string;
77
+ }>;
78
+ }): Promise<MCPToolCallResponse>;
79
+ /**
80
+ * List messages in the mailbox
81
+ */
82
+ listMessages(params?: {
83
+ maxResults?: number;
84
+ pageToken?: string;
85
+ q?: string;
86
+ labelIds?: string[];
87
+ includeSpamTrash?: boolean;
88
+ }): Promise<MCPToolCallResponse>;
89
+ /**
90
+ * Get a specific message by ID
91
+ */
92
+ getMessage(params: {
93
+ id: string;
94
+ format?: "minimal" | "full" | "raw" | "metadata";
95
+ }): Promise<MCPToolCallResponse>;
96
+ /**
97
+ * Search messages with query
98
+ */
99
+ searchMessages(params: {
100
+ query: string;
101
+ maxResults?: number;
102
+ pageToken?: string;
103
+ includeSpamTrash?: boolean;
104
+ }): Promise<MCPToolCallResponse>;
105
+ }
106
+ //# sourceMappingURL=gmail-client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gmail-client.d.ts","sourceRoot":"","sources":["../../../src/plugins/gmail-client.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,87 @@
1
+ /**
2
+ * Gmail Plugin
3
+ * Enables Gmail tools with OAuth configuration
4
+ */
5
+ import type { MCPPlugin } from "./types.js";
6
+ /**
7
+ * Gmail plugin configuration
8
+ *
9
+ * SERVER-SIDE: Automatically reads GMAIL_CLIENT_ID and GMAIL_CLIENT_SECRET from environment.
10
+ * You can override by providing explicit clientId and clientSecret values.
11
+ * CLIENT-SIDE: Omit clientId and clientSecret when using createMCPClient()
12
+ */
13
+ export interface GmailPluginConfig {
14
+ /** Google OAuth client ID (defaults to GMAIL_CLIENT_ID env var) */
15
+ clientId?: string;
16
+ /** Google OAuth client secret (defaults to GMAIL_CLIENT_SECRET env var) */
17
+ clientSecret?: string;
18
+ /** Additional OAuth scopes (default: Gmail API scopes) */
19
+ scopes?: string[];
20
+ /** OAuth redirect URI */
21
+ redirectUri?: string;
22
+ }
23
+ /**
24
+ * Default Gmail tools that this plugin enables
25
+ * These should match the tool names exposed by your MCP server
26
+ */
27
+ declare const GMAIL_TOOLS: readonly ["gmail_send_message", "gmail_list_messages", "gmail_get_message", "gmail_search_messages"];
28
+ /**
29
+ * Gmail Plugin
30
+ *
31
+ * Enables Gmail integration with OAuth authentication.
32
+ *
33
+ * By default, reads GMAIL_CLIENT_ID and GMAIL_CLIENT_SECRET from environment variables.
34
+ * You can override these by providing explicit values in the config.
35
+ *
36
+ * @example Server-side (minimal - uses env vars):
37
+ * ```typescript
38
+ * import { createMCPServer, gmailPlugin } from 'integrate-sdk/server';
39
+ *
40
+ * // Automatically uses GMAIL_CLIENT_ID and GMAIL_CLIENT_SECRET from env
41
+ * export const { client } = createMCPServer({
42
+ * plugins: [
43
+ * gmailPlugin({
44
+ * scopes: ['gmail.send', 'gmail.readonly'],
45
+ * }),
46
+ * ],
47
+ * });
48
+ * ```
49
+ *
50
+ * @example Server-side (with explicit override):
51
+ * ```typescript
52
+ * import { createMCPServer, gmailPlugin } from 'integrate-sdk/server';
53
+ *
54
+ * export const { client } = createMCPServer({
55
+ * plugins: [
56
+ * gmailPlugin({
57
+ * clientId: process.env.CUSTOM_GMAIL_ID!,
58
+ * clientSecret: process.env.CUSTOM_GMAIL_SECRET!,
59
+ * scopes: ['gmail.send', 'gmail.readonly'],
60
+ * }),
61
+ * ],
62
+ * });
63
+ * ```
64
+ *
65
+ * @example Client-side (without secrets):
66
+ * ```typescript
67
+ * import { createMCPClient, gmailPlugin } from 'integrate-sdk';
68
+ *
69
+ * const client = createMCPClient({
70
+ * plugins: [
71
+ * gmailPlugin({
72
+ * scopes: ['gmail.send', 'gmail.readonly'],
73
+ * }),
74
+ * ],
75
+ * });
76
+ * ```
77
+ */
78
+ export declare function gmailPlugin(config?: GmailPluginConfig): MCPPlugin;
79
+ /**
80
+ * Export tool names for type inference
81
+ */
82
+ export type GmailTools = typeof GMAIL_TOOLS[number];
83
+ /**
84
+ * Export Gmail client types
85
+ */
86
+ export type { GmailPluginClient } from "./gmail-client.js";
87
+ //# sourceMappingURL=gmail.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gmail.d.ts","sourceRoot":"","sources":["../../../src/plugins/gmail.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAe,MAAM,YAAY,CAAC;AAEzD;;;;;;GAMG;AACH,MAAM,WAAW,iBAAiB;IAChC,mEAAmE;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,2EAA2E;IAC3E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,sGAKP,CAAC;AAEX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,wBAAgB,WAAW,CAAC,MAAM,GAAE,iBAAsB,GAAG,SAAS,CA4BrE;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,WAAW,CAAC,MAAM,CAAC,CAAC;AAEpD;;GAEG;AACH,YAAY,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Server Plugin Client Types
3
+ * Fully typed interface for server-level tools that don't belong to a specific plugin
4
+ */
5
+ import type { MCPToolCallResponse } from "../protocol/messages.js";
6
+ /**
7
+ * Server Plugin Client Interface
8
+ * Provides type-safe methods for server-level operations
9
+ */
10
+ export interface ServerPluginClient {
11
+ /**
12
+ * List all tools available for a specific integration
13
+ */
14
+ listToolsByIntegration(params: {
15
+ integration: string;
16
+ }): Promise<MCPToolCallResponse>;
17
+ }
18
+ //# sourceMappingURL=server-client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server-client.d.ts","sourceRoot":"","sources":["../../../src/plugins/server-client.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAEnE;;;GAGG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,sBAAsB,CAAC,MAAM,EAAE;QAC7B,WAAW,EAAE,MAAM,CAAC;KACrB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;CAClC"}
@@ -0,0 +1,70 @@
1
+ /**
2
+ * Plugin System Types
3
+ * Inspired by BetterAuth's provider pattern
4
+ */
5
+ import type { MCPClient } from "../client.js";
6
+ /**
7
+ * OAuth Configuration for a plugin
8
+ *
9
+ * CLIENT-SIDE: You no longer need to provide clientId/clientSecret in the browser.
10
+ * These should be kept server-side in your OAuth API routes for security.
11
+ *
12
+ * SERVER-SIDE: OAuth credentials are provided via API route configuration
13
+ * using createNextOAuthHandler() or createTanStackOAuthHandler().
14
+ */
15
+ export interface OAuthConfig {
16
+ /** OAuth provider identifier (e.g., 'github', 'google') */
17
+ provider: string;
18
+ /**
19
+ * OAuth client ID (optional - only needed for legacy direct MCP server calls)
20
+ * @deprecated Keep client ID server-side in OAuth API route configuration
21
+ */
22
+ clientId?: string | undefined;
23
+ /**
24
+ * OAuth client secret (optional - only needed for legacy direct MCP server calls)
25
+ * @deprecated Keep client secret server-side in OAuth API route configuration
26
+ */
27
+ clientSecret?: string | undefined;
28
+ /** Required OAuth scopes */
29
+ scopes: string[];
30
+ /** Redirect URI for OAuth flow */
31
+ redirectUri?: string;
32
+ /** Provider-specific configuration */
33
+ config?: unknown;
34
+ }
35
+ /**
36
+ * MCP Plugin Interface
37
+ *
38
+ * Plugins enable specific tools and configure OAuth providers
39
+ */
40
+ export interface MCPPlugin {
41
+ /** Unique plugin identifier */
42
+ id: string;
43
+ /** List of tool names this plugin enables */
44
+ tools: string[];
45
+ /** OAuth configuration for this plugin */
46
+ oauth?: OAuthConfig;
47
+ /** Called when the plugin is initialized with the client */
48
+ onInit?: (client: MCPClient<any>) => Promise<void> | void;
49
+ /** Called before the client connects to the server */
50
+ onBeforeConnect?: (client: MCPClient<any>) => Promise<void> | void;
51
+ /** Called after the client successfully connects */
52
+ onAfterConnect?: (client: MCPClient<any>) => Promise<void> | void;
53
+ /** Called when the client disconnects */
54
+ onDisconnect?: (client: MCPClient<any>) => Promise<void> | void;
55
+ }
56
+ /**
57
+ * Helper type to extract plugin IDs from an array of plugins
58
+ */
59
+ export type ExtractPluginIds<T extends readonly MCPPlugin[]> = T[number]["id"];
60
+ /**
61
+ * Helper type to extract tools from an array of plugins
62
+ */
63
+ export type ExtractPluginTools<T extends readonly MCPPlugin[]> = T[number]["tools"][number];
64
+ /**
65
+ * Type guard to check if a plugin has OAuth configuration
66
+ */
67
+ export declare function hasOAuthConfig(plugin: MCPPlugin): plugin is MCPPlugin & {
68
+ oauth: OAuthConfig;
69
+ };
70
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/plugins/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C;;;;;;;;GAQG;AACH,MAAM,WAAW,WAAW;IAC1B,2DAA2D;IAC3D,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAE9B;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAElC,4BAA4B;IAC5B,MAAM,EAAE,MAAM,EAAE,CAAC;IAEjB,kCAAkC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,sCAAsC;IACtC,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;;GAIG;AACH,MAAM,WAAW,SAAS;IACxB,+BAA+B;IAC/B,EAAE,EAAE,MAAM,CAAC;IAEX,6CAA6C;IAC7C,KAAK,EAAE,MAAM,EAAE,CAAC;IAEhB,0CAA0C;IAC1C,KAAK,CAAC,EAAE,WAAW,CAAC;IAEpB,4DAA4D;IAC5D,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAE1D,sDAAsD;IACtD,eAAe,CAAC,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAEnE,oDAAoD;IACpD,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAElE,yCAAyC;IACzC,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;CACjE;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,SAAS,SAAS,EAAE,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC;AAE/E;;GAEG;AACH,MAAM,MAAM,kBAAkB,CAAC,CAAC,SAAS,SAAS,SAAS,EAAE,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC;AAE5F;;GAEG;AACH,wBAAgB,cAAc,CAC5B,MAAM,EAAE,SAAS,GAChB,MAAM,IAAI,SAAS,GAAG;IAAE,KAAK,EAAE,WAAW,CAAA;CAAE,CAE9C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "integrate-sdk",
3
- "version": "0.8.42-dev.0",
3
+ "version": "0.8.42",
4
4
  "description": "Type-safe 3rd party integration SDK for the Integrate MCP server",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -126,4 +126,4 @@
126
126
  "simple-git-hooks": {
127
127
  "pre-commit": "./scripts/check-version.sh"
128
128
  }
129
- }
129
+ }