AWeber MCP server for AI agents and assistants

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with AWeber MCP or direct API to manage lists, add subscribers, send broadcasts, and fetch engagement analytics through natural language.

AWeber logoAWeber
Oauth2

AWeber is an email marketing platform for creating campaigns, lists, and landing pages. It helps businesses automate email outreach and measure subscriber engagement.

32 Tools

Try AWeber now

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

TOOL ROUTER PLAYGROUND
AWeber
Try asking
TOOLS

Supported Tools

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

Add Subscriber

Add one consented subscriber to an AWeber list.

Cancel Broadcast Schedule

Cancel an AWeber broadcast's existing delivery schedule.

Create Broadcast Draft

Create an API-managed AWeber broadcast draft for later review or editing.

Create Custom Field

Create a named custom subscriber field on one AWeber mailing list.

Delete Broadcast Draft

Permanently delete one unsent broadcast draft created through the AWeber API.

Delete Custom Field

Permanently delete one custom field definition at the exact AWeber path identified by account_id, list_id, and custom_field_id.

Delete Subscriber

Permanently delete one AWeber subscriber by current email or numeric ID.

Get Broadcast

Return one specific AWeber broadcast by numeric ID, including its content, lifecycle status, targeting, tracking settings, and schedule or send metadata.

Get Subscriber

Return one AWeber subscriber by numeric ID, including personally identifiable information (PII), subscription status, tags, custom fields, lifecycle timestamps, customer notes, IP address, and precise latitude/longitude when available.

List Accounts

List one page of AWeber customer accounts authorized by the connected OAuth account, or retrieve one account by account_id.

List Broadcast Engagement

Return one page of sensitive subscriber-level opens or clicks for a sent broadcast.

List Broadcasts

List one page of broadcasts for a mailing list by required lifecycle status, or set count_only=true to return only total_size.

List Broadcast Statistics

List one page of aggregate, time-series, link-ranked, and subscriber-ranked statistics for a broadcast campaign message, or retrieve one exact statistic.

List Custom Fields

List one page of custom subscriber fields defined for an AWeber mailing list, or retrieve one field by custom_field_id.

List Integrations

List one page of integrations connected to an AWeber account, or retrieve one integration by integration_id.

List Landing Pages

List one page of landing-page summaries for an AWeber mailing list, or provide landing_page_id to retrieve one page including its potentially large draft and published HTML.

List Legacy Campaign Messages

List one page of AWeber's legacy campaign message resources, filter by broadcast/followup type, or retrieve one message by type and ID.

List Lists

List one page of mailing lists for an AWeber account, optionally filtering by list name or unique list ID, or retrieve one mailing list by list_id.

List Segments

List audience segments for a mailing list, or retrieve one segment by segment_id, so valid broadcast targeting choices can be inspected.

List Subscriber Activity

Retrieve one page of a subscriber's chronological activity, including subscription, verification, message delivery, open, click, and tracked events.

List Tags

Get up to 500 tags used by subscribers on an AWeber mailing list, sorted by descending popularity.

List Web Forms

List one page of web forms across an account or for one mailing list, or retrieve one web form when list_id and webform_id are both provided; webform_id cannot be used without list_id.

List Web Form Split Test Components

List one page of components in an AWeber web form split test, or retrieve one component when component_id is provided.

List Web Form Split Tests

List one page of web form split tests across an account or for one mailing list, or retrieve one split test when list_id and split_test_id are both provided; split_test_id cannot be used without list_id.

Move Subscriber

Move a currently subscribed person between two lists owned by the same AWeber account.

Record Subscriber Tracked Event

Record one AWeber purchase/pageview tracked event and create the consented subscriber if absent or update the subscriber if present.

Schedule Broadcast

Schedule an AWeber broadcast for audience email delivery at a future time.

Search Subscribers

Search exact subscriber attributes across an account or within one AWeber mailing list, or return all subscribers in a list when no filters are supplied.

Update Broadcast Draft

Safely update one or more fields on an API-created AWeber broadcast draft.

Update Custom Field

Rename an AWeber custom subscriber field or change whether subscribers may update it.

Update Subscriber

Update reversible profile fields for one AWeber subscriber selected by current email or numeric ID.

Update Subscriber Consent and Automation

Change one AWeber subscriber's consent status, autoresponder position, or Campaign tags.

SETUP GUIDE

Connect AWeber 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 AWeber
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: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
  maxSteps: 5,
});

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

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

Why Use Composio?

AI Native AWeber Integration

  • Supports both AWeber MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your AWeber data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke AWeber 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 AWeber
  • Scoped, least privilege access to AWeber resources
  • Full audit trail of agent actions to support review and compliance

Rolling this out across your team?

Give your team centralized access control across every framework with Composio’s MCP Gateway.

EXPLORE MCP GATEWAY
FAQ

Frequently asked questions

AWeber requires connections to go through your own OAuth app. You register it once with AWeber, add its client ID and secret in the Composio dashboard, and from then on everyone connects by signing in to AWeber as usual. Composio handles the rest of the flow and the token refresh.

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

Yes. Composio is SOC 2 Type II compliant and is built to keep your AWeber connection and credentials secure. OAuth tokens and API keys are encrypted, and sensitive customer data is protected at rest and in transit.

Composio also undergoes independent security testing and continuously monitors its systems for security threats. You can review the latest reports and policies in the Composio Trust Center.

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

When you connect a AWeber account through Composio, every action runs under that account, so anything the agent creates, sends, or changes shows up in AWeber as done by you. Keep an approval step in your prompt for actions with side effects, such as sending or deleting, and have the agent draft first.

Exactly the ones AWeber lists on its consent screen when you connect. Review that screen before approving. If you connect a work account, your AWeber administrator may need to approve the app first, and you can revoke the access inside AWeber whenever you want.

Yes. Composio supports multiple connected accounts for the same app, and that works in Claude, ChatGPT, or any other assistant you connect through Composio. Give each AWeber connection a name such as work or personal, and the assistant uses the one you mention in the request. Each account keeps its own credentials and nothing is merged.

Composio refreshes AWeber tokens automatically, so day to day you do nothing. If you revoke access inside AWeber, or AWeber invalidates the session, the connection shows as expired in Composio and the agent stops acting on that account until you reconnect it, which is a single sign-in.

Composio's free plan includes 100,000 tool calls per month with no credit card, which covers most personal AWeber use. Paid plans add higher limits and team features. Your AWeber plan and its API limits still apply as usual.

Built-in connectors usually give one AI access to a limited set of apps. Many people use Composio because it lets their AI connect to more apps than it normally supports, or connect to multiple accounts for the same app (e.g. connect Claude to multiple AWeber accounts).

With Composio, you connect AWeber once and then use it across different AI assistants without setting it up separately in each one. Connect your apps to Composio once, then connect Composio to whichever AI you use, whether that's Claude, ChatGPT, Hermes, or your own custom assistant.

Start with AWeber.It takes 30 seconds.

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

Start building