# 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](/getting-started/quickstart.md) 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**](/madkudu-mcp/install-in-ai-platforms-in-2min/claude-anthropic.md)
* &#x20;[**ChatGPT**](/madkudu-mcp/install-in-ai-platforms-in-2min/chatgpt-openai.md)
* &#x20;[**Cursor**](/madkudu-mcp/install-in-ai-platforms-in-2min/cursor.md)
* &#x20;[**Dust**](/madkudu-mcp/install-in-ai-platforms-in-2min/dust.md)
* &#x20;[**Relevance AI**](/madkudu-mcp/install-in-ai-platforms-in-2min/relevance-ai.md)
* &#x20;[**Windsurf**](/madkudu-mcp/install-in-ai-platforms-in-2min/windsurf.md)

## **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"
  ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.madkudu.com/madkudu-mcp/install-in-ai-platforms-in-2min.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
