|
1 | 1 | --- |
2 | 2 | title: Leverage Composio MCP Server Library |
3 | 3 | sidebarTitle: Composio |
4 | | -description: Connect to Composio MCP servers for 10,000+ out-of-box MCP servers |
| 4 | +description: Connect to Composio MCP servers for access to 10,000+ out-of-box integrations |
5 | 5 | icon: "brand/Composio" |
6 | 6 | --- |
7 | 7 |
|
8 | | -### Composio |
| 8 | +## Overview |
9 | 9 |
|
10 | | -[Composio](https://composio.dev/) offers a platform with access to 10,000+ out-of-box MCP servers for popular services. |
| 10 | +[Composio](https://composio.dev/) provides access to over 10,000 pre-built MCP servers for popular services and integrations. This guide will walk you through how to connect to Composio MCP servers and use them in your Inkeep project. |
11 | 11 |
|
12 | | -#### Quick integration |
| 12 | +### Step 1: Create a Composio Account |
13 | 13 |
|
14 | | -Follow Composio's MCP Gateway setup to obtain your MCP server URL and credentials. Then register it as a tool in your project: |
| 14 | +Sign up for a Composio account at [composio.dev](https://composio.dev/) |
15 | 15 |
|
16 | | -```typescript |
17 | | -import { mcpTool } from '@inkeep/agents-sdk'; |
| 16 | +### Step 2: Configure Your MCP Servers |
18 | 17 |
|
19 | | -const composioTool = mcpTool({ |
20 | | - id: 'composio-tools', |
21 | | - name: 'Composio Integration', |
22 | | - description: 'Access popular SaaS tools via Composio', |
23 | | - serverUrl: 'YOUR_COMPOSIO_MCP_URL', // From Composio dashboard |
24 | | -}); |
| 18 | +After creating a new organization and then a new project, navigate to the MCP configurations section and create configs for the MCP servers you want to use. |
| 19 | + |
| 20 | + |
| 21 | + |
| 22 | +### Step 3: Retrieve Your API Key |
| 23 | + |
| 24 | +Copy your Composio API key from the Settings tab. |
| 25 | + |
| 26 | + |
| 27 | + |
| 28 | +### Step 4: Add API Key to Environment |
| 29 | + |
| 30 | +Add your Composio API key to your root `.env` file: |
| 31 | + |
| 32 | +``` |
| 33 | +COMPOSIO_API_KEY=your-composio-api-key |
25 | 34 | ``` |
26 | 35 |
|
27 | | -<Snippet file="mcp/next-steps.mdx" /> |
| 36 | +### Step 5: Restart and Verify |
| 37 | + |
| 38 | +Restart your development servers by pressing Control + C and running `pnpm dev` again (pressing `r` will not work). |
| 39 | + |
| 40 | +Open the Visual Builder and navigate to the MCP Servers tab. Click **+New MCP Server**, then select the **Popular MCP Servers** tab and search for "composio" to see your configured Composio MCP servers. |
0 commit comments