
The fastest gateway to any third party API. Get started with less than 20 lines of code.
import {
createMCPServer,
githubIntegration,
gmailIntegration,
} from 'integrate-sdk/server';
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
githubIntegration({
scopes: ['repo', 'user'],
}),
gmailIntegration({
scopes: ['https://www.googleapis.com/auth/gmail.send'],
}),
],
});
await client.github.createIssue({
owner: 'integrate-dev',
repo: 'roadmap',
title: 'Ship agent hand-offs',
});
const client = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [github, gmail, slack]
})