> For the complete documentation index, see [llms.txt](https://docs.manyfast.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.manyfast.io/en/use/mcp-1.md).

# MCP Connection (Lovable)

### What can you do with MCP?

When you enable the MCP server, external AI services can directly access your Manyfast planning files to learn from their contents, build on the planned structure, or carry out tasks based on it.\
This lets you extend your planning or move from planning to development quickly and consistently.

**1. Auto-generate code from planning documents**

* Pass the Specifications defined in Manyfast through MCP to code Agents like Cursor or Claude Code to generate code that follows your plan and drive development forward.

**2. Provide learning context to Agents**

* Provide consistent context to AI development Agents through Manyfast's planning structure and naming conventions.

**3. Real-time sync between planning and development**

* The MCP server updates changes from Manyfast in real time, keeping the connected planning information up to date.

{% hint style="info" %}
Manyfast MCP supports integration with the following services.

* **Cursor / Claude Code / ChatGPT /** **Lovable**
  {% endhint %}

{% hint style="warning" %}
To prevent unintended edits or deletions, external tools editing Manyfast documents through MCP is not supported.
{% endhint %}

## How to Connect

Manyfast MCP can be used in Cursor, Claude Code, ChatGPT, and Lovable.\
Refer to the setup instructions for each environment below.

#### Adding the MCP Server

{% tabs %}
{% tab title="Cursor" %}
**Cursor Setup**

[Cursor MCP Official Documentation](https://docs.cursor.com/ko/context/mcp)

* Go to Cursor's Settings > Integrations > "Custom MCP Server" and enter the following information.

```json
{
  "mcpServers": {
    "manyfast": {
      "url": "https://api.manyfast.io/mcp"
    }
  }
}
```

* From the list of installed MCP servers, proceed to connect to manyfast.

Once setup is complete, you'll be redirected to the login page to connect to the MCP server.
{% endtab %}

{% tab title="Claude Code" %}
**Claude Code Setup**

[Claude Code MCP Official Documentation](https://code.claude.com/docs/ko/mcp)

* Run the following command in your terminal.

{% code overflow="wrap" %}

```bash
claude mcp add --transport http manyfast https://api.manyfast.io/mcp
```

{% endcode %}

* Then enter the following in your terminal.

```
 claude /mcp
```

* Select Manyfast from the list that appears.
* Choose option 1, Authenticate.

Once setup is complete, you'll be redirected to the login page to connect to the MCP server.
{% endtab %}

{% tab title="ChatGPT" %}
**ChatGPT Setup**

{% hint style="info" %}
Connection is only available on ChatGPT Plus or higher plans.
{% endhint %}

<figure><img src="/files/I2VSx60WgIsDQG89mOol" alt=""><figcaption></figcaption></figure>

* In ChatGPT, click the '+' button on the left of the chat input > More > Add Source.
* Choose Add > Connect More.

<figure><img src="/files/dQOPIS2fovdNP5QtO494" alt=""><figcaption></figcaption></figure>

* In the Integrations and App Connectors tab, scroll to the bottom and enable Developer Mode under "Advanced Settings".
* Click the "Create" button at the top of Integrations and App Connectors.

<figure><img src="/files/dIdUSQGuhh3aIx0osRpl" alt=""><figcaption></figcaption></figure>

* Enter the information as shown in the image and click "Create" to finish.
  * MCP server URL: <https://api.manyfast.io/mcp>

Once setup is complete, you'll be redirected to the login page to connect to the MCP server.
{% endtab %}

{% tab title="Lovable" %}
**Lovable Setup**

{% hint style="info" %}
MCP connection is only available on the Lovable Business plan or higher.
{% endhint %}

<figure><img src="/files/xl7t5QQEoyeOsUhWZcH5" alt=""><figcaption></figcaption></figure>

* Click the '+' button at the bottom left of the chat window > Integration > Manage Integrations.

<figure><img src="/files/Nhh2pV1PTGZ5fb9RuVqF" alt=""><figcaption></figcaption></figure>

* Click the 'Add' button at the bottom of the MCP server list.

<figure><img src="/files/YParQxHdhG07gOfROz8d" alt=""><figcaption></figcaption></figure>

* Enter the information as shown in the image and click 'Add Server' to finish.
  * MCP server URL: <https://api.manyfast.io/mcp>

Once setup is complete, you'll be redirected to the login page to connect to the MCP server.
{% endtab %}
{% endtabs %}

#### Logging In to the MCP Server

* When you enable the MCP server, you'll be prompted to log in to complete the connection.

<figure><img src="/files/jAQ6Ss0snIcODJ0LMDv3" alt=""><figcaption></figcaption></figure>

* Once you've logged in with your Manyfast account, you can select the group to connect to the MCP server.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.manyfast.io/en/use/mcp-1.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
