Customgpt MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Customgpt MCP or direct API to run chatbot queries, fetch contextual answers, generate custom content, and automate customer responses through natural language.

Customgpt logoCustomgpt
Api Key

CustomGPT.ai lets you build and deploy chatbots tailored to your own data and business needs. Get precise and context-aware AI conversations without writing code.

40 Tools

Try Customgpt now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Customgpt
Try asking
TOOLS

Supported Tools

Every Customgpt action and event your agent gets out of the box.

Activate Persona Version

Restore a previous persona version for a CustomGPT agent.

Add Source to Project

Add a data source to a CustomGPT agent's knowledge base.

Clone CustomGPT Project

Tool to clone a CustomGPT agent (project).

Create Conversation

Tool to create a new conversation session for a CustomGPT agent.

Create CustomGPT Project

Tool to create a new CustomGPT agent from a sitemap URL or file upload.

Delete Page from Agent

Tool to delete a document from a CustomGPT agent's knowledge base.

Delete CustomGPT Project

Tool to delete a CustomGPT project by ID.

Delete CustomGPT Project License

Deletes a license from a CustomGPT project/agent.

Delete CustomGPT Source

Tool to delete a data source from a CustomGPT agent.

Export Leads

Export leads from a CustomGPT project.

Get Message

Tool to get message details from a CustomGPT conversation.

Get Message Trust Score

Tool to retrieve verification trust score for a message in a CustomGPT conversation.

Get Page Metadata

Tool to get document metadata including title, source URL, word count, and custom metadata fields.

Get Agent Plugins

Tool to retrieve plugin details for a specific CustomGPT agent (project).

Get CustomGPT Project

Tool to get agent details.

Get Project License

Tool to retrieve a license for a specific project.

Get Project Settings

Retrieve configuration settings for a specific CustomGPT agent/project.

Get Analytics Chart Data

Tool to retrieve analytics chart data for a CustomGPT project.

Get Conversation Analytics

Tool to get conversation analytics for a CustomGPT project.

Get Customer Intelligence Report

Tool to get customer intelligence for a CustomGPT project.

Get Traffic Analytics Report

Tool to retrieve traffic analytics for a CustomGPT agent/project.

Get Agent Statistics

Tool to get agent statistics.

Get Usage Limits

Get account usage limits showing current usage vs.

Get Current User Profile

Tool to retrieve the current user's profile information.

List Conversation Messages

Retrieves all messages from a CustomGPT conversation, including both user queries and AI responses.

List Agent Documents

Lists all documents in a CustomGPT agent's knowledge base.

List Persona Versions

Tool to list persona versions for a CustomGPT agent.

List CustomGPT Project Licenses

List all licenses for a CustomGPT project/agent.

List CustomGPT Projects

Lists all CustomGPT projects (agents) for the authenticated user.

List Agent Sources

Tool to list all data sources connected to an agent.

Reindex Page

Tool to reindex a document in CustomGPT knowledge base.

Search Team Members

Tool to search for team members by email address or user ID.

Submit Message Feedback

Tool to submit feedback (thumbs up/down) for a message in a CustomGPT conversation.

Update Page Metadata

Update document metadata for a specific page in a CustomGPT project.

Update Project

Updates an existing CustomGPT agent's name or configuration settings.

Update Project License

Updates the name of an existing license for a CustomGPT project/agent.

Update Project Settings

Update CustomGPT agent configuration settings.

Update Source Settings

Update source settings for a CustomGPT agent data source.

Update User Profile

Updates the authenticated user's profile information in CustomGPT.

Verify Message Accuracy

Tool to verify message accuracy by triggering a fact-checking verification process.

SETUP GUIDE

Connect Customgpt MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'List all CustomGPT projects for my account' }],
  stopWhen: stepCountIs(5)
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Customgpt API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Customgpt Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all CustomGPT projects for my account'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Customgpt actions with your Agent

Why Use Composio?

AI Native Customgpt Integration

  • Supports both Customgpt MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for querying, managing, and interacting with your Customgpt bots

Managed Auth

  • Built-in API key management—no manual credential handling
  • Central place to manage, scope, and revoke Customgpt access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Customgpt
  • Scoped, least privilege access to Customgpt resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Customgpt requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Customgpt.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Customgpt tool your agent needs.Free to start.

Start building