OneUp MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with OneUp MCP or direct API to schedule social posts, manage connected accounts, review comments, and analyze performance through natural language.

OneUp logoOneUp
Api Key

OneUp is a social media management platform for scheduling posts, comments, accounts, media, and analytics. Use it to manage multiple social networks from one place and keep publishing consistent.

27 Tools

Try OneUp now

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

TOOL ROUTER PLAYGROUND
OneUp
Try asking
TOOLS

Supported Tools

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

Comment On Post

Publish a new top-level comment on a social post through a connected OneUp social account.

Create Image Post

Create a scheduled, timeslot, or draft image post for selected OneUp social accounts.

Create Media Upload URL

Create a temporary OneUp media upload URL and return instructions for a separate direct upload.

Create Text Post

Create a scheduled, timeslot, or draft text post for selected OneUp social accounts.

Create Video Post

Create a scheduled, timeslot, or draft video post for selected OneUp social accounts.

Delete Comment

Permanently and irreversibly delete a social-platform comment and its local OneUp record.

Delete Scheduled Post

Permanently and irreversibly delete an unpublished scheduled OneUp post.

Edit Scheduled Post

Replace the content and optionally the title of a scheduled OneUp post.

Get Analytics Overview

Get account-level overview metrics and ranked performance for a connected account on a supported social platform.

Get Audience Demographics

Get audience demographics for a connected Facebook, Instagram, TikTok, or YouTube account for a preset or custom reporting period.

Get Content Analytics

Get per-post, Reel, or Story analytics for a connected account on a supported social platform.

Get Google Business Reviews

Get Google Business Profile reviews and aggregate rating information for a connected account or location.

Get Meta Ads Analytics

Get campaign, ad-set, or individual-ad analytics for a connected Meta Ads account.

List Categories

List OneUp categories used to group connected social accounts.

List Category Accounts

List social accounts assigned to a OneUp category.

List Comment Replies

Fetch child replies for a parent social-platform comment.

List Comment Threads

List social posts with top-level comments and child replies in the requested order, one page at a time.

List Instagram Trending Sounds

Search Instagram trending sounds for a Facebook-connected Instagram Business or Creator account.

List Pinterest Boards

List boards available to a connected Pinterest username for post targeting.

List Posts

List scheduled, published, or failed OneUp posts, one page at a time.

List Social Accounts

List all connected OneUp social accounts and their connection health.

List TikTok Trending Sounds

Get TikTok trending commercial sounds for a documented country, period, genre, and connected TikTok account.

List YouTube Playlists

List playlists for a connected YouTube channel.

Refresh Analytics

Start a background refresh of analytics for all connected social accounts.

Refresh Comments

Start a background refresh of comments from connected social platforms.

Reply To Comment

Publish a direct reply to an existing social-platform comment.

Reschedule Failed Post

Move a failed post back into the schedule at a future date and time.

SETUP GUIDE

Connect OneUp MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

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

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for OneUp
3

Connect to AI Agent

typescript
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.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: 'Get performance analytics for my latest OneUp posts'
  }],
  maxSteps: 5,
});

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

Connect OneUp 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 OneUp 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 my connected social accounts in OneUp'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute OneUp actions with your Agent

Why Use Composio?

AI Native OneUp Integration

  • Supports both OneUp MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for scheduling posts, managing media, checking comments, and querying OneUp analytics

Managed Auth

  • Secure API key handling without hard-coding OneUp credentials in your agent code
  • Central place to manage, scope, and revoke OneUp access
  • Per user and per environment credentials for safer social media automation

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Clear schemas help agents understand OneUp actions like creating posts, listing accounts, and fetching analytics
  • 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 OneUp
  • Scoped, least privilege access to OneUp social media resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, OneUp 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 OneUp.It takes 30 seconds.

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

Start building