How do I connect LUVI to ChatGPT?

Add LUVI as an MCP connector in ChatGPT with the URL https://www.luvicreator.com/api/mcp, sign in to LUVI when asked, and ChatGPT can search and fetch your library, estimate costs and generate.

Last updated:

Adding the connector

  1. In ChatGPT, open Settings → Connectors (developer mode may need to be enabled first) and create a new connector.
  2. Enter https://www.luvicreator.com/api/mcp as the server URL.
  3. On first use, ChatGPT opens LUVI's sign-in page. Sign in and approve the connection.

What ChatGPT can do

The same 33 tools Claude gets, documented at /docs/mcp. Two of them exist specifically for ChatGPT's conventions:

  • search — find generations and uploads in your library by text; used automatically in research.
  • fetch — return one item with its details and the real credits it cost.

For creation, ChatGPT uses list_models and get_model_schema to see a model's exact parameters, estimate_cost to quote, and generate to run.

Getting files in

Attaching a file to the chat does not pass its bytes to a tool. Use get_upload_link, which opens LUVI's upload dialog in your browser locked to the right project, then continue in the chat. The next article covers this in detail.

Frequently asked

Why does ChatGPT keep calling search and fetch?

Those two tools are how ChatGPT reads external data, including in deep research. search finds items in your library by query; fetch returns one item by id.

Can ChatGPT generate directly?

Yes, with the generate tool, after quoting the cost with estimate_cost. The result is saved to your Library like any other generation.

Does this work on the free plan of ChatGPT?

Custom connectors are a ChatGPT feature; check ChatGPT's own plan page for availability.

More questions