Resources · Make integration

codeGPT Make integrationAutomate codeGPT with Make.

Can your codeGPT agents answer on their own when something happens in another tool? The codeGPT Make integration gives you 11 modules: 9 actions and 2 searches. This page shows how to link your account, build a first scenario and pick the right module for each job.

Verified Trustpilot reviews · AI, automation & growth agency

What you can automate

What does the codeGPT Make integration do?

The codeGPT Make integration lets a Make scenario (the automation you build in Make, a chain of modules) talk to your codeGPT account. Each module is one brick of that chain: it can send text to an agent, create or update an agent, or upload documents the agent can learn from, all without writing code.

Answers without copy and paste. A developer drops a question in your team tool, another app's module passes the text on, and Add a Completion sends it to the agent. The reply comes back as a bundle, one item you can hand to the next module.

An agent that keeps up with your docs. When a new specification lands in your file storage, Load a Document and Train uploads it and trains it to your account, then Update Agent's Documents links it to the right agent.

A tidy inventory. List all Agents and List all Documents return everything your account holds, handy before a cleanup or to feed a report.

The app has no trigger, so a scenario starts from another app or from the schedule Make sets on the first module. For anything the listed modules skip, Make an API Call reaches the rest of the codeGPT API with the same connection. The same app often has an n8n node too; the n8n vs Make comparison helps you choose. To go further, see the Make training or check Make pricing before you scale.

Connect

How do you connect codeGPT to Make?

  1. 01

    Copy your API key in codeGPT

    You need an active codeGPT account and its Secret API Key. In codeGPT, open the API keys page from the main menu and copy the key shown there. Keep the tab open, you paste it in a moment.

  2. 02

    Add a codeGPT module in Make

    In your scenario, add any codeGPT module and click Create a connection. A connection is your codeGPT account linked to Make once, then reused by every codeGPT module. You can fill Connection name if you want a clear label.

  3. 03

    Paste the key and save

    Paste the API key you copied, or follow the on-screen instructions, and save. From then on, every codeGPT module in your scenarios uses this connection, so you never paste the key again.

First scenario

Your first scenario with codeGPT

GoalWhen a new question arrives in another app, Make sends it to your codeGPT agent and passes the answer on.

  1. 01

    Create the scenario

    From the Scenarios page, create a new scenario and click the + to add the first module. Pick the app where questions arrive, such as your support desk or form tool.

  2. 02

    Set up the starting module

    Connect that app and fill its fields. Make lists the folders or objects it can read once the connection exists, so you choose from a menu instead of typing paths.

  3. 03

    Send the text to codeGPT

    Click the + on the right, search codeGPT and pick Add a Completion. Create the connection, choose your agent, then map the question text from the previous module.

  4. 04

    Test with Run once

    Click Run once to execute the scenario one time. Open each module's bubble to read the bundles it received and check that the agent's reply looks right.

  5. 05

    Schedule and switch on

    Set the schedule on the first module, every 15 minutes by default, then switch the scenario on. Each module run on a bundle counts as one operation on your plan.

Modules

What can codeGPT do in Make?

codeGPT gives you 11 modules. For each one: what it does for you, when to reach for it, and what to watch out for.

codeGPT1

Add a Completion

Action

In Make“Sends a text to an agent.”

Hands a piece of text to one of your agents and gets its reply back, ready to map into the next module of the scenario.

When to use it
a teammate posts a code question in a chat tool and you want the agent's answer to land in the same thread.
Watch out
the reply is only as good as what the agent knows, so load its documents before you rely on it.
codeGPT2

Create an Agent

Action

In Make“Create a new agent by adding your organization id and the necessary data”

Spins up a brand new agent in your codeGPT account from inside a scenario, using your organization ID and the data the module asks for.

When to use it
a new client project starts and you want a dedicated assistant set up for it automatically instead of by hand.
Watch out
run it with Run once while testing, since every run creates another agent you then have to clean up.
codeGPT3

Get a Document

Action

In Make“Retrieve information about a document using its document ID.”

Fetches the details of one document stored in codeGPT when you already know its document ID, so later modules can use that information.

When to use it
you stored document IDs in a spreadsheet and want to check one of them before attaching it to an agent.
Watch out
without the ID it finds nothing; start with List all Documents if you only know roughly what you are looking for.
codeGPT4

Get an Agent

Action

In Make“Retrieve a specific agent by providing an agentId.”

Reads one agent's current setup from its agentId, which gives the scenario a clear picture of that assistant before it changes anything.

When to use it
right before Update an Agent, to compare what is configured today with what a request from your team asks for.
Watch out
the module needs the exact agentId, not the agent's display name, so map it from a list or a stored value.
codeGPT5

Load a Document

Action

In Make“Uploads a document it to your codeGPT account.”

Uploads a file into your codeGPT account so it sits with your other documents, without training it at this stage.

When to use it
you want to collect reference files first, for example release notes coming from your storage app, and decide later which agent gets them.
Watch out
on the Free plan Make handles files up to 5 MB, so large exports may need a paid plan or splitting.
codeGPT6

Load a Document and Train

Action

In Make“Uploads a document and trains it to your codeGPT account.”

Uploads a file and trains it to your codeGPT account in the same step, so the knowledge is usable right after the scenario runs.

When to use it
a new internal guide is published and your agents should be able to answer questions about it without a manual upload.
Watch out
pick this one over Load a Document only when training is what you want; if you are just storing files, the plain upload is enough.
codeGPT7

Make an API Call

Action

In Make“Performs an arbitrary authorized API call.”

Calls any endpoint of the codeGPT API with the connection you already set up, which covers whatever the ten other modules leave out.

When to use it
the codeGPT API documents an operation you need and no module in this list performs it.
Watch out
you build the request yourself, so keep the codeGPT API reference open and test with Run once before you switch the scenario on.
codeGPT8

Update Agent's Documents

Action

In Make“Updates agent related documents.”

Changes which documents an agent relies on, so its answers follow the material you actually want it to use.

When to use it
after Load a Document and Train, to attach the fresh file to the support agent rather than leaving it unused in the account.
Watch out
check the agent with Get an Agent first, so you know which documents it already has before this module changes them.
codeGPT9

Update an Agent

Action

In Make“Updates the CodeGPT agent by entering the ID.”

Edits an existing agent once you give it the agent's ID, so you can adjust an assistant without opening codeGPT.

When to use it
a project lead fills in a change request form and the agent's setup should follow as soon as the request is approved.
Watch out
the change applies to the live agent, so try it on a test agent with Run once before you connect a real request flow.
codeGPT10

List all Agents

Search

In Make“Lists all the agents associated with your codeGPT account.”

Returns every agent tied to your codeGPT account, each one as its own bundle that the next module can process.

When to use it
you want an up to date inventory in a sheet, or you need to loop over agents to review each one.
Watch out
a search can return zero, one or many bundles, and every following module runs once per agent, which adds operations.
codeGPT11

List all Documents

Search

In Make“Lists all documents associated with your codeGPT account.”

Brings back all the documents stored in your codeGPT account, one bundle per document, so you can see what your agents can draw on.

When to use it
before a cleanup, or to find the document ID you need for Get a Document or Update Agent's Documents.
Watch out
add a filter after this module when you only care about some files, otherwise each later step counts an operation per document.
Need help

Need help automating codeGPT with Make?

A person reads every message.

FAQ

Questions people ask next

01Is the codeGPT Make integration free?
Yes, codeGPT is a standard app, so it is available on Make's Free plan. That plan allows 2 active scenarios, a minimum of 15 minutes between scheduled runs, up to 5 minutes per execution, files up to 5 MB and 512 MB of data transfer. Paid plans lower the interval to 1 minute, remove the cap on active scenarios and count usage in credits each month. You still need your own codeGPT account and API key, whose pricing is set by codeGPT.
02What do you need to connect codeGPT to Make?
An active codeGPT account and its Secret API Key. You find the key on the API keys page reached from the main menu of codeGPT, copy it, then click Create a connection on any codeGPT module in Make and paste it. Naming the connection is optional. Once saved, that single connection serves every codeGPT module in all your scenarios, so you only do this once per account. For the subscription itself, codeGPT's pricing page tells you what your account includes.
03Can a codeGPT scenario start in real time?
Not from codeGPT itself, because the app has no trigger module. You have two ways to start. Put another app's trigger first, for example a new message or a new form entry, and send its text to Add a Completion; if that app offers an instant trigger, it calls Make through a webhook as soon as something happens. Or let the schedule on the first module run the scenario, every 15 minutes by default.
04What if the codeGPT module you need is missing in Make?
Use Make an API Call. It sends a request to any endpoint of the codeGPT API through the connection you already have, so you are not limited to the 11 listed modules. Keep the codeGPT API reference at hand, since you write the request yourself. Also note that Make's documentation for this app says it was generated with AI help and may contain mistakes, so confirm important details with codeGPT.
05Should you use Make or n8n for codeGPT?
It depends on where the rest of your automations live. In Make, codeGPT comes with 11 ready modules, a guided connection and Make an API Call for the gaps, which suits a team already building scenarios there. The same app often has an n8n node as well, so check whether it exists and what it covers before you decide. The n8n vs Make comparison on this site lays out the criteria side by side.