integrate-sdk 0.8.43-dev.0 → 0.8.44-dev.0
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/adapters/auto-routes.js +44 -4
- package/dist/adapters/index.js +44 -4
- package/dist/adapters/nextjs.js +44 -4
- package/dist/adapters/node.js +44 -4
- package/dist/adapters/svelte-kit.js +44 -4
- package/dist/adapters/tanstack-start.js +44 -4
- package/dist/index.d.ts +19 -40
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +44 -36
- package/dist/oauth.js +44 -4
- package/dist/server.js +44 -4
- package/dist/src/client.d.ts.map +1 -1
- package/dist/src/integrations/server-client.d.ts +15 -1
- package/dist/src/integrations/server-client.d.ts.map +1 -1
- package/index.ts +20 -72
- package/package.json +1 -1
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
package/dist/adapters/index.js
CHANGED
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
package/dist/adapters/nextjs.js
CHANGED
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
package/dist/adapters/node.js
CHANGED
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
package/dist/index.d.ts
CHANGED
|
@@ -5,63 +5,42 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @example
|
|
7
7
|
* ```typescript
|
|
8
|
-
* //
|
|
9
|
-
* import { client } from 'integrate-sdk';
|
|
10
|
-
*
|
|
11
|
-
* await client.github.listOwnRepos({});
|
|
12
|
-
*
|
|
13
|
-
* // Or create a custom client with different API configuration
|
|
8
|
+
* // Create a client with explicitly configured integrations
|
|
14
9
|
* import { createMCPClient, githubIntegration } from 'integrate-sdk';
|
|
15
10
|
*
|
|
16
11
|
* // Example 1: Different API path (same origin)
|
|
17
|
-
* const
|
|
12
|
+
* const client = createMCPClient({
|
|
18
13
|
* apiRouteBase: '/custom/api/path', // Calls /custom/api/path/mcp
|
|
19
14
|
* integrations: [githubIntegration()],
|
|
20
15
|
* });
|
|
21
16
|
*
|
|
22
|
-
*
|
|
23
|
-
* const crossOriginClient = createMCPClient({
|
|
24
|
-
* apiBaseUrl: 'https://api.example.com', // API on different domain
|
|
25
|
-
* apiRouteBase: '/api/integrate', // Calls https://api.example.com/api/integrate/mcp
|
|
26
|
-
* integrations: [githubIntegration()],
|
|
27
|
-
* });
|
|
17
|
+
* await client.github.listOwnRepos({});
|
|
28
18
|
* ```
|
|
29
|
-
*/
|
|
30
|
-
export * from './src/index.js';
|
|
31
|
-
/**
|
|
32
|
-
* Default MCP Client with all integrations pre-configured
|
|
33
|
-
*
|
|
34
|
-
* This is a singleton client instance that includes GitHub and Gmail integrations.
|
|
35
|
-
* You can use it directly without having to configure integrations.
|
|
36
|
-
*
|
|
37
|
-
* Default configuration:
|
|
38
|
-
* - Calls API routes at: {window.location.origin}/api/integrate/mcp
|
|
39
|
-
* - OAuth routes at: {window.location.origin}/api/integrate/oauth/*
|
|
40
|
-
* - Automatically detects if server uses database storage and skips localStorage accordingly
|
|
41
|
-
*
|
|
42
|
-
* For custom configuration (different apiBaseUrl, apiRouteBase, etc.),
|
|
43
|
-
* use `createMCPClient()` instead.
|
|
44
19
|
*
|
|
45
20
|
* @example
|
|
46
21
|
* ```typescript
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
* // Use GitHub integration
|
|
50
|
-
* const repos = await client.github.listOwnRepos({});
|
|
22
|
+
* // Example 2: Different API domain (cross-origin)
|
|
23
|
+
* import { createMCPClient, githubIntegration } from 'integrate-sdk';
|
|
51
24
|
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
25
|
+
* const client = createMCPClient({
|
|
26
|
+
* apiBaseUrl: 'https://api.example.com', // API on different domain
|
|
27
|
+
* apiRouteBase: '/api/integrate', // Calls https://api.example.com/api/integrate/mcp
|
|
28
|
+
* integrations: [githubIntegration()],
|
|
29
|
+
* });
|
|
54
30
|
* ```
|
|
55
31
|
*
|
|
56
32
|
* @example
|
|
57
33
|
* ```typescript
|
|
58
|
-
* //
|
|
59
|
-
* import { createMCPClient, githubIntegration } from 'integrate-sdk';
|
|
60
|
-
*
|
|
61
|
-
* const
|
|
62
|
-
* integrations: [
|
|
34
|
+
* // Example 3: Multiple integrations
|
|
35
|
+
* import { createMCPClient, githubIntegration, gmailIntegration } from 'integrate-sdk';
|
|
36
|
+
*
|
|
37
|
+
* const client = createMCPClient({
|
|
38
|
+
* integrations: [
|
|
39
|
+
* githubIntegration(),
|
|
40
|
+
* gmailIntegration(),
|
|
41
|
+
* ],
|
|
63
42
|
* });
|
|
64
43
|
* ```
|
|
65
44
|
*/
|
|
66
|
-
export
|
|
45
|
+
export * from './src/index.js';
|
|
67
46
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AAEH,cAAc,gBAAgB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1868,16 +1868,56 @@ class MCPClientBase {
|
|
|
1868
1868
|
return new Proxy({}, {
|
|
1869
1869
|
get: (_target, methodName) => {
|
|
1870
1870
|
if (methodName === "listConfiguredIntegrations") {
|
|
1871
|
-
return async () =>
|
|
1872
|
-
|
|
1871
|
+
return async () => {
|
|
1872
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1873
1873
|
id: integration.id,
|
|
1874
1874
|
name: integration.name || integration.id,
|
|
1875
1875
|
tools: integration.tools,
|
|
1876
1876
|
hasOAuth: !!integration.oauth,
|
|
1877
1877
|
scopes: integration.oauth?.scopes,
|
|
1878
1878
|
provider: integration.oauth?.provider
|
|
1879
|
-
}))
|
|
1880
|
-
|
|
1879
|
+
}));
|
|
1880
|
+
let serverMetadataMap = new Map;
|
|
1881
|
+
try {
|
|
1882
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1883
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1884
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1885
|
+
if (textContent) {
|
|
1886
|
+
try {
|
|
1887
|
+
const parsed = JSON.parse(textContent);
|
|
1888
|
+
const integrations = parsed.integrations || [];
|
|
1889
|
+
for (const metadata of integrations) {
|
|
1890
|
+
const key = metadata.name.toLowerCase();
|
|
1891
|
+
serverMetadataMap.set(key, metadata);
|
|
1892
|
+
}
|
|
1893
|
+
} catch (parseError) {
|
|
1894
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
} catch (error) {
|
|
1899
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1900
|
+
return { integrations: localIntegrations };
|
|
1901
|
+
}
|
|
1902
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1903
|
+
const metadataKey = local.name.toLowerCase();
|
|
1904
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1905
|
+
const idKey = local.id.toLowerCase();
|
|
1906
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1907
|
+
if (serverMetadataById) {
|
|
1908
|
+
return {
|
|
1909
|
+
...local,
|
|
1910
|
+
name: serverMetadataById.name || local.name,
|
|
1911
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1912
|
+
description: serverMetadataById.description,
|
|
1913
|
+
owner: serverMetadataById.owner,
|
|
1914
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1915
|
+
};
|
|
1916
|
+
}
|
|
1917
|
+
return local;
|
|
1918
|
+
});
|
|
1919
|
+
return { integrations: mergedIntegrations };
|
|
1920
|
+
};
|
|
1881
1921
|
}
|
|
1882
1922
|
return async (args, options) => {
|
|
1883
1923
|
const toolName = methodToToolName(methodName, "");
|
|
@@ -11544,37 +11584,6 @@ init_cursor();
|
|
|
11544
11584
|
init_generic();
|
|
11545
11585
|
init_messages();
|
|
11546
11586
|
init_http_session();
|
|
11547
|
-
|
|
11548
|
-
// index.ts
|
|
11549
|
-
init_client();
|
|
11550
|
-
init_github();
|
|
11551
|
-
init_gmail();
|
|
11552
|
-
init_notion();
|
|
11553
|
-
init_slack();
|
|
11554
|
-
init_linear();
|
|
11555
|
-
init_vercel();
|
|
11556
|
-
init_zendesk();
|
|
11557
|
-
init_stripe();
|
|
11558
|
-
init_gcal();
|
|
11559
|
-
init_outlook();
|
|
11560
|
-
init_airtable();
|
|
11561
|
-
init_todoist();
|
|
11562
|
-
var client = createMCPClient({
|
|
11563
|
-
integrations: [
|
|
11564
|
-
githubIntegration(),
|
|
11565
|
-
gmailIntegration(),
|
|
11566
|
-
notionIntegration(),
|
|
11567
|
-
slackIntegration(),
|
|
11568
|
-
linearIntegration(),
|
|
11569
|
-
vercelIntegration(),
|
|
11570
|
-
zendeskIntegration(),
|
|
11571
|
-
stripeIntegration(),
|
|
11572
|
-
gcalIntegration(),
|
|
11573
|
-
outlookIntegration(),
|
|
11574
|
-
airtableIntegration(),
|
|
11575
|
-
todoistIntegration()
|
|
11576
|
-
]
|
|
11577
|
-
});
|
|
11578
11587
|
export {
|
|
11579
11588
|
zendeskIntegration,
|
|
11580
11589
|
youtubeIntegration,
|
|
@@ -11619,7 +11628,6 @@ export {
|
|
|
11619
11628
|
createOAuthRedirectHandler,
|
|
11620
11629
|
createNextOAuthHandler,
|
|
11621
11630
|
createMCPClient,
|
|
11622
|
-
client,
|
|
11623
11631
|
clearClientCache,
|
|
11624
11632
|
calcomIntegration,
|
|
11625
11633
|
airtableIntegration,
|
package/dist/oauth.js
CHANGED
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
package/dist/server.js
CHANGED
|
@@ -1840,16 +1840,56 @@ class MCPClientBase {
|
|
|
1840
1840
|
return new Proxy({}, {
|
|
1841
1841
|
get: (_target, methodName) => {
|
|
1842
1842
|
if (methodName === "listConfiguredIntegrations") {
|
|
1843
|
-
return async () =>
|
|
1844
|
-
|
|
1843
|
+
return async () => {
|
|
1844
|
+
const localIntegrations = this.integrations.map((integration) => ({
|
|
1845
1845
|
id: integration.id,
|
|
1846
1846
|
name: integration.name || integration.id,
|
|
1847
1847
|
tools: integration.tools,
|
|
1848
1848
|
hasOAuth: !!integration.oauth,
|
|
1849
1849
|
scopes: integration.oauth?.scopes,
|
|
1850
1850
|
provider: integration.oauth?.provider
|
|
1851
|
-
}))
|
|
1852
|
-
|
|
1851
|
+
}));
|
|
1852
|
+
let serverMetadataMap = new Map;
|
|
1853
|
+
try {
|
|
1854
|
+
const serverResponse = await this.callServerToolInternal("list_all_providers");
|
|
1855
|
+
if (serverResponse.content && serverResponse.content.length > 0) {
|
|
1856
|
+
const textContent = serverResponse.content[0]?.text;
|
|
1857
|
+
if (textContent) {
|
|
1858
|
+
try {
|
|
1859
|
+
const parsed = JSON.parse(textContent);
|
|
1860
|
+
const integrations = parsed.integrations || [];
|
|
1861
|
+
for (const metadata of integrations) {
|
|
1862
|
+
const key = metadata.name.toLowerCase();
|
|
1863
|
+
serverMetadataMap.set(key, metadata);
|
|
1864
|
+
}
|
|
1865
|
+
} catch (parseError) {
|
|
1866
|
+
logger5.debug("Failed to parse server metadata response:", parseError);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
} catch (error) {
|
|
1871
|
+
logger5.debug("Failed to fetch server metadata, returning local-only data:", error);
|
|
1872
|
+
return { integrations: localIntegrations };
|
|
1873
|
+
}
|
|
1874
|
+
const mergedIntegrations = localIntegrations.map((local) => {
|
|
1875
|
+
const metadataKey = local.name.toLowerCase();
|
|
1876
|
+
const serverMetadata = serverMetadataMap.get(metadataKey);
|
|
1877
|
+
const idKey = local.id.toLowerCase();
|
|
1878
|
+
const serverMetadataById = serverMetadataMap.get(idKey) || serverMetadata;
|
|
1879
|
+
if (serverMetadataById) {
|
|
1880
|
+
return {
|
|
1881
|
+
...local,
|
|
1882
|
+
name: serverMetadataById.name || local.name,
|
|
1883
|
+
logoUrl: serverMetadataById.logo_url,
|
|
1884
|
+
description: serverMetadataById.description,
|
|
1885
|
+
owner: serverMetadataById.owner,
|
|
1886
|
+
exampleUsage: serverMetadataById.example_usage
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
return local;
|
|
1890
|
+
});
|
|
1891
|
+
return { integrations: mergedIntegrations };
|
|
1892
|
+
};
|
|
1853
1893
|
}
|
|
1854
1894
|
return async (args, options) => {
|
|
1855
1895
|
const toolName = methodToToolName(methodName, "");
|
package/dist/src/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,KAAK,EACV,OAAO,EAEP,mBAAmB,EAGpB,MAAM,wBAAwB,CAAC;AAEhC,OAAO,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,KAAK,EAAE,eAAe,EAAiB,eAAe,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACrG,OAAO,EAGL,KAAK,mBAAmB,EACzB,MAAM,aAAa,CAAC;AAGrB,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAErD,OAAO,KAAK,EACV,UAAU,EACV,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,mBAAmB,EACpB,MAAM,kBAAkB,CAAC;AAqE1B;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,gBAAgB;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,qBAAqB;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACrC;AAED;;GAEG;AACH,KAAK,oBAAoB,CAAC,CAAC,IAAI,CAAC,SAAS;IAAE,EAAE,EAAE,MAAM,EAAE,CAAA;CAAE,GAAG,EAAE,GAAG,KAAK,CAAC;AACvE,KAAK,cAAc,CAAC,aAAa,SAAS,SAAS,cAAc,EAAE,IAAI,oBAAoB,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC;AAEnH;;;GAGG;AACH,KAAK,qBAAqB,CAAC,aAAa,SAAS,SAAS,cAAc,EAAE,IAAI;KAC3E,CAAC,IAAI,cAAc,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,QAAQ,GACvD,QAAQ,GACR,CAAC,SAAS,OAAO,GACjB,OAAO,GACP,CAAC,SAAS,QAAQ,GAClB,QAAQ,GACR,CAAC,SAAS,OAAO,GACjB,OAAO,GACP,CAAC,SAAS,QAAQ,GAClB,QAAQ,GACR,CAAC,SAAS,QAAQ,GAClB,QAAQ,GACR,CAAC,SAAS,SAAS,GACnB,SAAS,GACT,CAAC,SAAS,QAAQ,GAClB,QAAQ,GACR,CAAC,SAAS,MAAM,GAChB,MAAM,GACN,CAAC,SAAS,SAAS,GACnB,SAAS,GACT,CAAC,SAAS,UAAU,GACpB,UAAU,GACV,CAAC,SAAS,SAAS,GACnB,SAAS,GACT,CAAC,SAAS,UAAU,GACpB,UAAU,GACV,CAAC,SAAS,QAAQ,GAClB,QAAQ,GACR,CAAC,SAAS,MAAM,GAChB,MAAM,GACN,CAAC,SAAS,UAAU,GACpB,UAAU,GACV,CAAC,SAAS,YAAY,GACtB,YAAY,GACZ,CAAC,SAAS,OAAO,GACjB,OAAO,GACP,CAAC,SAAS,OAAO,GACjB,OAAO,GACP,CAAC,SAAS,UAAU,GACpB,UAAU,GACV,CAAC,SAAS,SAAS,GACnB,SAAS,GACT,CAAC,SAAS,SAAS,GACnB,SAAS,GACT,CAAC,SAAS,QAAQ,GAClB,QAAQ,GACR,KAAK,GACP,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,CAAC,SAAS,OAAO,GAAG,sBAAsB,GAC1C,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,CAAC,SAAS,OAAO,GAAG,sBAAsB,GAC1C,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,CAAC,SAAS,SAAS,GAAG,wBAAwB,GAC9C,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,CAAC,SAAS,MAAM,GAAG,qBAAqB,GACxC,CAAC,SAAS,SAAS,GAAG,wBAAwB,GAC9C,CAAC,SAAS,UAAU,GAAG,yBAAyB,GAChD,CAAC,SAAS,SAAS,GAAG,wBAAwB,GAC9C,CAAC,SAAS,UAAU,GAAG,yBAAyB,GAChD,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,CAAC,SAAS,MAAM,GAAG,qBAAqB,GACxC,CAAC,SAAS,UAAU,GAAG,yBAAyB,GAChD,CAAC,SAAS,YAAY,GAAG,2BAA2B,GACpD,CAAC,SAAS,OAAO,GAAG,sBAAsB,GAC1C,CAAC,SAAS,OAAO,GAAG,sBAAsB,GAC1C,CAAC,SAAS,UAAU,GAAG,yBAAyB,GAChD,CAAC,SAAS,SAAS,GAAG,wBAAwB,GAC9C,CAAC,SAAS,SAAS,GAAG,wBAAwB,GAC9C,CAAC,SAAS,QAAQ,GAAG,uBAAuB,GAC5C,KAAK;CACN,CAAC;AAEF;;;;;GAKG;AACH,MAAM,MAAM,SAAS,CAAC,aAAa,SAAS,SAAS,cAAc,EAAE,GAAG,SAAS,cAAc,EAAE,IAC/F,aAAa,CAAC,aAAa,CAAC,GAAG,qBAAqB,CAAC,aAAa,CAAC,CAAC;AAEtE;;;;GAIG;AACH,qBAAa,aAAa,CAAC,aAAa,SAAS,SAAS,cAAc,EAAE,GAAG,SAAS,cAAc,EAAE;IACpG,OAAO,CAAC,SAAS,CAAuB;IACxC,OAAO,CAAC,YAAY,CAAgB;IACpC,OAAO,CAAC,cAAc,CAAmC;IACzD,OAAO,CAAC,gBAAgB,CAA0B;IAClD,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,UAAU,CAAoC;IACtD,OAAO,CAAC,gBAAgB,CAAC,CAAgB;IACzC,OAAO,CAAC,gBAAgB,CAAS;IACjC,OAAO,CAAC,SAAS,CAAuF;IACxG,OAAO,CAAC,YAAY,CAAe;IACnC,OAAO,CAAC,YAAY,CAAgD;IACpE,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,UAAU,CAAC,CAAS;IAC5B,OAAO,CAAC,gBAAgB,CAAkB;IAE1C;;;OAGG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAG5C,SAAgB,MAAM,EAAG,uBAAuB,CAAC;IAGjD,SAAgB,OAAO,EAAG,aAAa,CAAC;gBAE5B,MAAM,EAAE,eAAe,CAAC,aAAa,CAAC;IA2LlD;;;;;;;;;;OAUG;IACH,OAAO,CAAC,qBAAqB;IAuB7B;;;;OAIG;IACH,OAAO,CAAC,sBAAsB;IAqB9B;;OAEG;IACH,OAAO,CAAC,yBAAyB;IAIjC;;OAEG;IACH,OAAO,CAAC,iBAAiB;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -20,12 +20,22 @@ export interface ServerIntegrationClient {
|
|
|
20
20
|
listAllProviders(): Promise<MCPToolCallResponse>;
|
|
21
21
|
/**
|
|
22
22
|
* List integrations configured on this SDK client
|
|
23
|
-
*
|
|
23
|
+
* Merges local configuration with server-provided metadata (name, description, logo, etc.)
|
|
24
24
|
*/
|
|
25
25
|
listConfiguredIntegrations(): Promise<{
|
|
26
26
|
integrations: ConfiguredIntegration[];
|
|
27
27
|
}>;
|
|
28
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* Server-provided integration metadata from list_all_providers
|
|
31
|
+
*/
|
|
32
|
+
export interface IntegrationMetadata {
|
|
33
|
+
name: string;
|
|
34
|
+
logo_url?: string;
|
|
35
|
+
description?: string;
|
|
36
|
+
owner?: string;
|
|
37
|
+
example_usage?: string;
|
|
38
|
+
}
|
|
29
39
|
/**
|
|
30
40
|
* Local integration metadata returned by listConfiguredIntegrations
|
|
31
41
|
*/
|
|
@@ -36,5 +46,9 @@ export interface ConfiguredIntegration {
|
|
|
36
46
|
hasOAuth: boolean;
|
|
37
47
|
scopes?: readonly string[];
|
|
38
48
|
provider?: string;
|
|
49
|
+
logoUrl?: string;
|
|
50
|
+
description?: string;
|
|
51
|
+
owner?: string;
|
|
52
|
+
exampleUsage?: string;
|
|
39
53
|
}
|
|
40
54
|
//# sourceMappingURL=server-client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server-client.d.ts","sourceRoot":"","sources":["../../../src/integrations/server-client.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAEnE;;;GAGG;AACH,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,sBAAsB,CAAC,MAAM,EAAE;QAC7B,WAAW,EAAE,MAAM,CAAC;KACrB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;IAEjC;;OAEG;IACH,gBAAgB,IAAI,OAAO,CAAC,mBAAmB,CAAC,CAAC;IAEjD;;;OAGG;IACH,0BAA0B,IAAI,OAAO,CAAC;QACpC,YAAY,EAAE,qBAAqB,EAAE,CAAC;KACvC,CAAC,CAAC;CACJ;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,SAAS,MAAM,EAAE,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC3B,QAAQ,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"server-client.d.ts","sourceRoot":"","sources":["../../../src/integrations/server-client.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAEnE;;;GAGG;AACH,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,sBAAsB,CAAC,MAAM,EAAE;QAC7B,WAAW,EAAE,MAAM,CAAC;KACrB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;IAEjC;;OAEG;IACH,gBAAgB,IAAI,OAAO,CAAC,mBAAmB,CAAC,CAAC;IAEjD;;;OAGG;IACH,0BAA0B,IAAI,OAAO,CAAC;QACpC,YAAY,EAAE,qBAAqB,EAAE,CAAC;KACvC,CAAC,CAAC;CACJ;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,SAAS,MAAM,EAAE,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC3B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
package/index.ts
CHANGED
|
@@ -5,95 +5,43 @@
|
|
|
5
5
|
*
|
|
6
6
|
* @example
|
|
7
7
|
* ```typescript
|
|
8
|
-
* //
|
|
9
|
-
* import { client } from 'integrate-sdk';
|
|
10
|
-
*
|
|
11
|
-
* await client.github.listOwnRepos({});
|
|
12
|
-
*
|
|
13
|
-
* // Or create a custom client with different API configuration
|
|
8
|
+
* // Create a client with explicitly configured integrations
|
|
14
9
|
* import { createMCPClient, githubIntegration } from 'integrate-sdk';
|
|
15
10
|
*
|
|
16
11
|
* // Example 1: Different API path (same origin)
|
|
17
|
-
* const
|
|
12
|
+
* const client = createMCPClient({
|
|
18
13
|
* apiRouteBase: '/custom/api/path', // Calls /custom/api/path/mcp
|
|
19
14
|
* integrations: [githubIntegration()],
|
|
20
15
|
* });
|
|
21
16
|
*
|
|
22
|
-
*
|
|
23
|
-
* const crossOriginClient = createMCPClient({
|
|
24
|
-
* apiBaseUrl: 'https://api.example.com', // API on different domain
|
|
25
|
-
* apiRouteBase: '/api/integrate', // Calls https://api.example.com/api/integrate/mcp
|
|
26
|
-
* integrations: [githubIntegration()],
|
|
27
|
-
* });
|
|
17
|
+
* await client.github.listOwnRepos({});
|
|
28
18
|
* ```
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
|
-
export * from './src/index.js';
|
|
32
|
-
|
|
33
|
-
// Export default client with all integrations pre-configured
|
|
34
|
-
import { createMCPClient } from './src/client.js';
|
|
35
|
-
import { githubIntegration } from './src/integrations/github.js';
|
|
36
|
-
import { gmailIntegration } from './src/integrations/gmail.js';
|
|
37
|
-
import { notionIntegration } from './src/integrations/notion.js';
|
|
38
|
-
import { slackIntegration } from './src/integrations/slack.js';
|
|
39
|
-
import { linearIntegration } from './src/integrations/linear.js';
|
|
40
|
-
import { vercelIntegration } from './src/integrations/vercel.js';
|
|
41
|
-
import { zendeskIntegration } from './src/integrations/zendesk.js';
|
|
42
|
-
import { stripeIntegration } from './src/integrations/stripe.js';
|
|
43
|
-
import { gcalIntegration } from './src/integrations/gcal.js';
|
|
44
|
-
import { outlookIntegration } from './src/integrations/outlook.js';
|
|
45
|
-
import { airtableIntegration } from './src/integrations/airtable.js';
|
|
46
|
-
import { todoistIntegration } from './src/integrations/todoist.js';
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Default MCP Client with all integrations pre-configured
|
|
50
|
-
*
|
|
51
|
-
* This is a singleton client instance that includes GitHub and Gmail integrations.
|
|
52
|
-
* You can use it directly without having to configure integrations.
|
|
53
|
-
*
|
|
54
|
-
* Default configuration:
|
|
55
|
-
* - Calls API routes at: {window.location.origin}/api/integrate/mcp
|
|
56
|
-
* - OAuth routes at: {window.location.origin}/api/integrate/oauth/*
|
|
57
|
-
* - Automatically detects if server uses database storage and skips localStorage accordingly
|
|
58
|
-
*
|
|
59
|
-
* For custom configuration (different apiBaseUrl, apiRouteBase, etc.),
|
|
60
|
-
* use `createMCPClient()` instead.
|
|
61
19
|
*
|
|
62
20
|
* @example
|
|
63
21
|
* ```typescript
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
* // Use GitHub integration
|
|
67
|
-
* const repos = await client.github.listOwnRepos({});
|
|
22
|
+
* // Example 2: Different API domain (cross-origin)
|
|
23
|
+
* import { createMCPClient, githubIntegration } from 'integrate-sdk';
|
|
68
24
|
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
25
|
+
* const client = createMCPClient({
|
|
26
|
+
* apiBaseUrl: 'https://api.example.com', // API on different domain
|
|
27
|
+
* apiRouteBase: '/api/integrate', // Calls https://api.example.com/api/integrate/mcp
|
|
28
|
+
* integrations: [githubIntegration()],
|
|
29
|
+
* });
|
|
71
30
|
* ```
|
|
72
31
|
*
|
|
73
32
|
* @example
|
|
74
33
|
* ```typescript
|
|
75
|
-
* //
|
|
76
|
-
* import { createMCPClient, githubIntegration } from 'integrate-sdk';
|
|
77
|
-
*
|
|
78
|
-
* const
|
|
79
|
-
* integrations: [
|
|
34
|
+
* // Example 3: Multiple integrations
|
|
35
|
+
* import { createMCPClient, githubIntegration, gmailIntegration } from 'integrate-sdk';
|
|
36
|
+
*
|
|
37
|
+
* const client = createMCPClient({
|
|
38
|
+
* integrations: [
|
|
39
|
+
* githubIntegration(),
|
|
40
|
+
* gmailIntegration(),
|
|
41
|
+
* ],
|
|
80
42
|
* });
|
|
81
43
|
* ```
|
|
82
44
|
*/
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
githubIntegration(),
|
|
86
|
-
gmailIntegration(),
|
|
87
|
-
notionIntegration(),
|
|
88
|
-
slackIntegration(),
|
|
89
|
-
linearIntegration(),
|
|
90
|
-
vercelIntegration(),
|
|
91
|
-
zendeskIntegration(),
|
|
92
|
-
stripeIntegration(),
|
|
93
|
-
gcalIntegration(),
|
|
94
|
-
outlookIntegration(),
|
|
95
|
-
airtableIntegration(),
|
|
96
|
-
todoistIntegration(),
|
|
97
|
-
],
|
|
98
|
-
});
|
|
45
|
+
|
|
46
|
+
export * from './src/index.js';
|
|
99
47
|
|