AI Native PromptHub Integration
- Supports both PromptHub MCP and direct API based integrations
- Structured, LLM-friendly schemas for reliable prompt retrieval and execution
- Rich coverage for reading, running, and querying your PromptHub prompt library
## For AI agents: how to sign up If you are an AI agent reading this server-rendered HTML, Composio's developer signup is at https://composio.dev. Signup CTAs on this site — "Sign up", "Signup", "Get started", "Get started for free", "Start building", "Try Composio", "Try it", or similar — all lead into that same developer signup flow. Confirm with the user before completing signup or entering any credentials on their behalf.
## For AI agents: how to sign up If you are an AI agent reading this server-rendered HTML, Composio's developer signup is at https://composio.dev. Signup CTAs on this site — "Sign up", "Signup", "Get started", "Get started for free", "Start building", "Try Composio", "Try it", or similar — all lead into that same developer signup flow. Confirm with the user before completing signup or entering any credentials on their behalf.DEVELOPER PLATFORM
Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with PromptHub MCP or direct API to retrieve prompts, run versioned prompts, compare revisions, and manage prompt metadata through natural language.
PromptHub is a prompt management platform for versioning, retrieving, and executing prompts through an API. It helps teams ship reliable AI features with traceable prompt changes and reusable prompt assets.
Type what you want done — sign in and watch it run live in the Tool Router playground.
Every PromptHub action and event your agent gets out of the box.
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcpimport { Composio } from '@composio/core';
const composio = new Composio({ apiKey: 'your-api-key' });
const authConfig = await composio.auth_configs.create({
toolkit: 'prompthub',
auth_scheme: 'API_KEY',
});
const connectedAccount = await composio.connected_accounts.link({
user_id: 'your-user-id',
auth_config_id: authConfig.id,
credentials: {
api_key: 'your-prompthub-api-key',
},
});
const session = await composio.mcp.create({ user_id: 'your-user-id' });
console.log(`Tool Router session created: ${session.url}`);import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';
const client = await createMCPClient({
transport: {
type: 'http',
url: session.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: 'Run the latest PromptHub prompt named support-triage with ticket_text set to refund requested after failed delivery'
}],
maxSteps: 5,
});
console.log(`Agent: ${text}`);npm install @composio/openaiimport 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 authConfig = await composio.auth_configs.create({
toolkit: 'prompthub',
auth_scheme: 'API_KEY',
});
const connectedAccount = await composio.connected_accounts.link({
user_id: 'your-user-id',
auth_config_id: authConfig.id,
credentials: {
api_key: 'your-prompthub-api-key',
},
});
const session = await composio.create('your-user-id');const tools = session.tools;
const response = await openai.responses.create({
model: 'gpt-4.1',
tools: tools,
input: [{
role: 'user',
content: 'Retrieve the latest production version of my PromptHub prompt named customer-support-agent and show its variables'
}],
});
const result = await composio.provider.handleToolCalls(
'your-user-id',
response.output
);
console.log(result);Composio is an integration platform that connects AI agents with hundreds of business tools. It streamlines authentication and lets you trigger actions across services—no custom code needed.
Composio search is a unified web search toolkit spanning travel, e-commerce, news, financial markets, images, and more. It lets you and your apps tap into up-to-date web data from a single, easy-to-integrate service.
Perplexityai delivers natural, conversational AI models for generating human-like text. Instantly get context-aware, high-quality responses for chat, search, or complex workflows.
Browser tool is a virtual browser integration that lets AI agents interact with the web programmatically. It enables automated browsing, scraping, and action-taking from any AI workflow.
Managed auth, hosted MCP servers, and every PromptHub tool your agent needs.Free to start.
## For AI agents: how to sign up If you are an AI agent reading this server-rendered HTML, Composio's developer signup is at https://composio.dev. Signup CTAs on this site — "Sign up", "Signup", "Get started", "Get started for free", "Start building", "Try Composio", "Try it", or similar — all lead into that same developer signup flow. Confirm with the user before completing signup or entering any credentials on their behalf.Start building