Spoki MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Spoki MCP or direct API to send WhatsApp messages, manage campaigns, automate sales follow-ups, and handle customer support chats through natural language.

Spoki logoSpoki
Api Key

Spoki is an Italian platform for automating WhatsApp communication via official APIs. It streamlines marketing, sales, support, and payment messaging for businesses.

57 Tools

Try Spoki now

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

TOOL ROUTER PLAYGROUND
Spoki
Try asking
TOOLS

Supported Tools

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

Add Contact Operator

Tool to assign an operator to a contact's chat.

Add Service User

Adds a new service user with a specific role to your Spoki account.

Check Role Private Key

Tool to check if a service user role has a private key configured.

Clone Template

Tool to create a duplicate copy of an existing template.

Create Account Onboarding Link

Tool to create an onboarding link for a specific Spoki account.

Create Custom Field

Creates a new custom field in Spoki for storing additional contact data.

Create Contact List

Creates a new contact list in Spoki for organizing and managing contacts.

Create Media File

Tool to create a new media file entry in Spoki.

Create or Update Contact

Creates a new contact or updates an existing contact in Spoki using the phone number as the unique identifier.

Create Template

Creates a new WhatsApp message template with localizations, buttons, and media headers.

Create Ticket

Tool to create a new support ticket in Spoki.

Delete contact

Tool to delete a specific contact.

Delete Custom Field

Tool to delete a specific custom field.

Delete list

Tool to delete a specific list.

Delete media file

Tool to delete a specific media file.

Delete role

Tool to delete a specific role.

Delete template

Tool to delete a WhatsApp template.

Delete ticket

Tool to delete a specific ticket.

Generate Role Private Key

Tool to generate a private key for a service user role.

Get Account Current Report

Tool to get the current report for a specified account.

List Accounts

Tool to retrieve a list of Spoki WhatsApp Business accounts with their details.

List Agencies

Tool to list all agencies accessible to the user.

List Automations

Tool to list, search, and filter automations.

List campaigns

Tool to list, search, and filter campaigns.

List Contacts

Tool to list, search, and filter contacts.

List Custom Fields

Tool to list, search, and filter custom fields.

List Lists

Tool to list, search, and filter contact lists.

List media

Tool to list media files.

List Partners

List all partners accessible to the authenticated account.

List Reports

Tool to list, search, and filter usage reports.

List Roles

Tool to list user roles in the system.

List tags

Lists all tags in the account.

List templates

Tool to list, search, and filter WhatsApp templates.

List Tickets

Tool to list, search, and filter tickets.

Remove All List Contacts

Tool to remove all contacts from a list.

Remove Contact Operator

Tool to remove an operator from a contact's chat.

Remove Contacts from List

Tool to remove specific contacts from a list.

Resend Invitation

Tool to resend an invitation email.

Retrieve Account

Retrieves detailed information about a specific Spoki WhatsApp Business account.

Retrieve Automation

Tool to retrieve details of a specific automation.

Retrieve Contact

Tool to retrieve details of a specific contact.

Retrieve Custom Field

Tool to retrieve details of a specific custom field.

Retrieve List

Tool to retrieve details of a specific list by ID.

Retrieve Media

Tool to retrieve details of a specific media file by ID.

Retrieve Role

Tool to retrieve details of a specific role by ID.

Retrieve Tag

Tool to retrieve details of a specific tag.

Retrieve Template

Tool to retrieve details of a specific template.

Revert Template to Draft

Tool to revert a WhatsApp template back to DRAFT status, removing it from WhatsApp.

Bulk Sync Contacts

Tool to bulk sync (create or update) multiple contacts in a single request.

Sync Contacts to List

Tool to create or update contacts and add them to a specific list in Spoki.

Update Campaign

Tool to update an existing campaign's name, status, or scheduled time.

Update Contact

Tool to update an existing contact in Spoki.

Update Custom Field

Tool to update a specific custom field.

Update Invitation Role

Tool to update the role of a pending invitation.

Update Media

Tool to update an existing media file in Spoki.

Update Role

Tool to update a user's role.

Update Template

Tool to update an existing WhatsApp template in Spoki.

SETUP GUIDE

Connect Spoki 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 campaigns scheduled for next week on Spoki' }],
  stopWhen: stepCountIs( 5 )
});

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

Connect Spoki 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 Spoki 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 WhatsApp message to all contacts tagged VIP'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Spoki actions with your Agent

Why Use Composio?

AI Native Spoki Integration

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

Managed Auth

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

Frequently asked questions

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

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

Start building