# ChatGPT (/docs/orm/v6/more/ai-tools/chatgpt)

Location: ORM > v6 > More > AI Tools > ChatGPT

[ChatGPT](https://openai.com/chatgpt) is a large language model-based chatbot developed by OpenAI. You can extend its capabilities by connecting it to external tools, such as the Prisma MCP server, to interact with your Prisma Postgres databases.

This guide explains how to add the remote Prisma MCP server to ChatGPT, allowing you to create and manage your databases using natural language prompts.

> [!NOTE]
> ChatGPT MCP integration is experimental
> 
> This feature is still in development by OpenAI and might look or work a little differently over time. Some users may not have access to it yet.
> 
> If you notice that something has changed or doesn't match this guide, please [open an issue](https://github.com/prisma/web/issues) or submit a pull request to update our docs.

Here is an end to end demo of setting up the remote Prisma MCP server and using it in ChatGPT:

<img alt="Using the remote Prisma MCP server in ChatGPT" src="/img/orm/chatgpt-demo.gif" width="1068" height="720" />

Features of the Prisma MCP server [#features-of-the-prisma-mcp-server]

By connecting the Prisma MCP server to ChatGPT, you can perform a variety of database management tasks directly from the chat interface. Here are some of the key features available:

* **Database management**: Create, list, and delete your Prisma Postgres databases.
* **Connection strings**: Generate, list, and revoke database connection strings.
* **Backup and recovery**: Create and list database backups, and restore a database from a backup.
* **Schema and Data interaction**: Execute SQL queries, introspect your database schema to understand its structure, and apply schema updates.
* **Workspace information**: Fetch details about your Prisma workspace.

Prerequisites [#prerequisites]

To use the Prisma MCP server with ChatGPT, you need access to ChatGPT's Developer Mode. This feature is available on specific ChatGPT plans. For the most up-to-date information on supported plans, please refer to the [official OpenAI documentation](https://platform.openai.com/docs/guides/developer-mode).

Enable Developer mode in ChatGPT [#enable-developer-mode-in-chatgpt]

1. Go to **Settings** in your ChatGPT account.
2. Click **Apps & Connectors**.
3. Scroll down and locate **Advanced settings**, then click it.
4. Toggle the **Developer mode** button on.
5. Click **Back**.

Add the remote Prisma MCP server [#add-the-remote-prisma-mcp-server]

1. Make sure "Developer mode" is enabled.
2. Go to the **Apps & Connectors** section of your **Settings**.
3. On the top right, locate and click **Create**.
4. A "New Connector" popup will open. Fill in the text fields as follows:
   * **Icon**: You can download and use the [Prisma favicon](https://www.prisma.io/favicon.ico).
   * **Name**: `Prisma MCP server`
   * **Description**: `Manage Prisma Postgres databases`
   * **MCP Server URL**: `https://mcp.prisma.io/mcp`
   * **Authentication**: `OAuth`
5. Check the "I trust this application" box and click **Create**.

You will be redirected to authenticate with your Prisma Data Platform account and choose your desired workspace. After successful authentication, you will be redirected back to ChatGPT.

Using the remote Prisma MCP server [#using-the-remote-prisma-mcp-server]

Once Developer Mode is enabled and the Prisma MCP server is added, you can use it in your chats.

1. In ChatGPT, click the **+** icon to the left of the chat input box.
2. Click **More**.
3. Select the **Prisma MCP server** to add it to your chat as a connector.

Now you can use natural language prompts to manage your database. For example:

```
Create a DB called pet-app for me near Paris
```

## Related pages

- [`Cursor`](https://www.prisma.io/docs/orm/v6/more/ai-tools/cursor): Learn tips and best practices for using Prisma ORM with the Cursor AI code editor.
- [`GitHub Copilot`](https://www.prisma.io/docs/orm/v6/more/ai-tools/github-copilot): Learn about the features available with GitHub Copilot and Prisma ORM, plus best practices and tips.
- [`Tabnine`](https://www.prisma.io/docs/orm/v6/more/ai-tools/tabnine): Learn tips and best practices for using Prisma ORM with the Tabnine AI code editor.
- [`Windsurf`](https://www.prisma.io/docs/orm/v6/more/ai-tools/windsurf): Learn tips and best practices for using Prisma ORM with the Windsurf AI code editor.