Thanks io MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Thanks io MCP or direct API to send postcards, automate direct mail campaigns, personalize messages, and track delivery — all using natural language.

Thanks io logoThanks io
Api Key

Thanks io is a direct mail automation platform for sending personalized postcards, letters, and notecards. Reach your customers offline with scalable, handwritten-style mailings.

29 Tools

Try Thanks io now

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

TOOL ROUTER PLAYGROUND
Thanks io
Try asking
TOOLS

Supported Tools

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

Add Recipient to Mailing List

Tool to add a new recipient to a mailing list.

Create Mailing List

Tool to create a new mailing list.

Delete Mailing List

Tool to delete a mailing list.

Delete Recipient from Mailing List

Tool to remove a recipient from a mailing list.

Delete Sub-Account

Tool to delete a specific sub-account by ID.

Execute Stored Send

Tool to execute a previously created stored send.

List Handwriting Styles

Tool to retrieve available handwriting styles.

List Image Templates

Tool to retrieve a list of available image templates.

List Mailing Lists

Tool to list all mailing lists.

List Message Templates

Tool to list available message templates.

Buy Radius Search Mailing List

Tool to buy or append a radius search mailing list based on address and radius.

Preview letter send

Tool to preview a letter send as PDF.

Preview Notecard

Tool to preview a notecard send.

Preview Windowless Letter

Tool to preview a windowless letter send.

List Orders

Tool to list recent orders.

Search Orders by Recipient Street Address

Tool to search orders by recipient street address.

Create Multiple Recipients

Tool to create multiple recipients at once in a mailing list.

Delete Recipient by Address

Tool to delete a recipient by address and postal code.

Get Recipient Details

Tool to get details for a specific recipient by ID.

Search Recipients by Email

Tool to search recipients by email across mailing lists.

Update Recipient

Tool to update existing recipient details by recipient ID.

Send Postcard

Tool to send a customized postcard.

Stored Send Notecard

Tool to create a stored send for a notecard.

Stored Send Postcard

Tool to create a stored send for a postcard.

Stored Send Windowless Letter

Tool to create a stored send for a windowless letter.

Create Sub-Account

Tool to create a new sub-account.

List Sub Accounts

Tool to list all available sub-accounts.

Get Sub Account Details

Tool to retrieve details for a specific sub-account by ID.

Update Sub-Account

Tool to update details for a specific sub-account.

SETUP GUIDE

Connect Thanks io 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: 'Add recipient john@example.com to our Summer Campaign mailing list' }],
  stopWhen: stepCountIs( 5 )
});

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

Connect Thanks io 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 Thanks io 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: 'Send a personalized postcard to a new recipient on my VIP mailing list'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Thanks io actions with your Agent

Why Use Composio?

AI Native Thanks io Integration

  • Supports both Thanks io MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for sending, tracking, and customizing your direct mail campaigns

Managed Auth

  • Built-in API Key handling with secure credential management
  • Central place to manage, scope, and revoke Thanks io 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 Thanks io
  • Scoped, least privilege access to Thanks io resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Thanks io requires you to configure your own API key credentials. 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 Thanks io.It takes 30 seconds.

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

Start building