Composio Partner Program

Onboard as a partner with Composio

Composio has launched the MCP Partner Program — a simple way to get access to pre-configured MCP servers for over 200+ toolkits. Perfect for platforms and developers looking to distribute MCP servers to their own users with zero setup.

Want to embed ready-to-use MCP servers in your own clients or workflows? Join the partner program and get access instantly.

What do partners get?

As a partner, you receive:

  • Access to curated MCP servers for all supported toolkits
  • One simple API to fetch all the MCP servers linked to your partner org
  • No infrastructure management or custom config required

It’s the fastest way to plug MCP into your platform.

Getting started is easy

Just send an email to mcp@composio.dev and we’ll onboard you.

Once onboarded, you’ll get a unique API URL to fetch your MCP servers.

Example

If your company is called lemon, you can fetch your available MCP servers with:

$GET https://mcp.composio.dev/api/partner/lemon/apps/list

Complete example

Here’s a full curl request to fetch your MCP servers:

$curl -X GET https://mcp.composio.dev/api/partner/lemon/apps/list \
> -H "Content-Type: application/json"

Sample response:

1{
2 "items": [
3 {
4 "slug": "gmail",
5 "name": "Gmail",
6 "description": "Gmail is Google's email service, featuring spam protection, search functions, and seamless integration with other G Suite apps for productivity",
7 "category": [
8 "collaboration & communication"
9 ],
10 "logo": "https://cdn.jsdelivr.net/gh/ComposioHQ/open-logos@master/gmail.svg",
11 "mcp_url": "https://mcp.composio.dev/partner/lemon/gmail",
12 "tool_count": 23
13 },
14 {
15 "slug": "slack",
16 "name": "Slack",
17 "description": "Slack is a business communication platform offering organized conversations in channels, direct messaging, and integrations with third-party services",
18 "category": [
19 "collaboration & communication"
20 ],
21 "logo": "https://cdn.jsdelivr.net/gh/ComposioHQ/open-logos@master/slack.svg",
22 "mcp_url": "https://mcp.composio.dev/partner/lemon/slack",
23 "tool_count": 15
24 },
25 {
26 "slug": "github",
27 "name": "GitHub",
28 "description": "GitHub is a web-based platform for version control and collaboration using Git, allowing developers to store, manage, and share code repositories",
29 "category": [
30 "development"
31 ],
32 "logo": "https://cdn.jsdelivr.net/gh/ComposioHQ/open-logos@master/github.svg",
33 "mcp_url": "https://mcp.composio.dev/partner/lemon/github",
34 "tool_count": 42
35 }
36 ]
37}