# Install in AI platforms in 2min

We support two ways to install MadKudu MCP

{% hint style="info" %}
For any installation, you'll need your API key. Refer to [this article](https://developers.madkudu.com/getting-started/quickstart) to get your API key.&#x20;
{% endhint %}

## **Remote** - **Recommended for most users**&#x20;

No setup required—just plug in the URL, fastest way to get started

For tools supporting MCP urls (Streamable HTTP transport) like Cursor, ChatGPT, use

> This transport is now the standard way defined by the [MCP Protocol](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http)

```bash
https://mcp.madkudu.com/YOUR_API_KEY/mcp
```

For tools not supporting Streamable HTTP transport yet like Claude, Windsurf, use

```bash
https://mcp.madkudu.com/YOUR_API_KEY/sse
```

See instructions for

* &#x20;[**Claude**](https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min/claude-anthropic)
* &#x20;[**ChatGPT**](https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min/chatgpt-openai)
* &#x20;[**Cursor**](https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min/cursor)
* &#x20;[**Dust**](https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min/dust)
* &#x20;[**Relevance AI**](https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min/relevance-ai)
* &#x20;[**Windsurf**](https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min/windsurf)

## **Local install** - **For custom agents and advanced users**

* Run the MCP client locally (via `npx`)
* Ideal for devs building internal copilots or CLI tools

To use MadKudu MCP with STDIO transport, add the following JSON in the MCP configuration of your client:

```json
{
  "command": "npx",
  "args": [
    "-y",
    "supergateway",
    "--sse",
    "https://mcp.madkudu.com/YOUR_API_KEY/sse"
  ]
}
```
