Skip to main content
Glama

MCP Evolution API

A Model Context Protocol (MCP) server for Claude that integrates with Evolution API for WhatsApp automation.

Overview

This MCP server allows Claude to interact with WhatsApp through the Evolution API, enabling capabilities like:

  • Managing WhatsApp instances

  • Sending various types of messages

  • Working with contacts and groups

  • Configuring webhooks and settings

Related MCP server: API Tester MCP Server

๐Ÿ“‚ Project Structure

mcp-evo-api/ โ”œโ”€โ”€ src/ โ”‚ โ”œโ”€โ”€ tools/ # MCP tools implementation for Evolution API โ”‚ โ”œโ”€โ”€ utils/ # Shared utilities, including Evolution API client โ”‚ โ”œโ”€โ”€ main.ts # Server entry point โ”‚ โ””โ”€โ”€ types.ts # Shared type definitions โ”œโ”€โ”€ scripts/ # Helper scripts โ”œโ”€โ”€ biome.json # Linting configuration โ”œโ”€โ”€ tsconfig.json # TypeScript configuration โ”œโ”€โ”€ docker-compose.yml # Docker Compose configuration โ”œโ”€โ”€ Dockerfile # Docker build configuration โ””โ”€โ”€ package.json # Project dependencies

๐Ÿš€ Quick Setup

Environment Setup

Create a .env file with your Evolution API credentials:

EVOLUTION_API_URL=https://your-evolution-api-server.com EVOLUTION_API_KEY=your-api-key-here

๐Ÿ“‹ Deployment Options

Environment

Steps

Command

Local Development

1. Clone and install

2. Run in dev mode

git clone https://github.com/aiteks-ltda/mcp-evo-api.git && cd mcp-evo-api && bun install

bun run dev

Local Production

1. Clone and install

2. Build and run

git clone https://github.com/aiteks-ltda/mcp-evo-api.git && cd mcp-evo-api && bun install

bun run build && bun run dist/main.js

Docker Compose

Run with Docker Compose

git clone https://github.com/aiteks-ltda/mcp-evo-api.git && cd mcp-evo-api

docker-compose up -d

Docker

Build and run container

docker run -d -p 3000:3000 -e EVOLUTION_API_URL=yoururl -e EVOLUTION_API_KEY=yourkey --name mcp-evo-api ghcr.io/aiteks-ltda/mcp-evo-api:latest

Claude Desktop Configuration

Add this to your Claude Desktop config file (typically located at ~/Library/Application Support/Claude/claude_desktop_config.json):

{ "mcpServers": { "evo-api": { "command": "node", "args": [ "/path/to/your/mcp-evo-api/dist/main.js" ] } } }

If using the Docker deployment:

{ "mcpServers": { "evo-api": { "url": "http://localhost:3000" } } }

๐Ÿ“Š Implementation Status

Category

Implemented

Pending Implementation

Core API

โœ… Get Information

โœ… Create Instance

โœ… Fetch Instances

โœ… Instance Connect

โœ… Restart Instance

โœ… Connection State

โœ… Logout Instance

โœ… Delete Instance

โœ… Set Presence

โŒ Check is WhatsApp

Webhook & Settings

โœ… Set Webhook

โœ… Find Webhook

โœ… Set Settings

โœ… Find Settings

Messaging

โœ… Send Plain Text

โœ… Send Status

โœ… Send Media

โœ… Send WhatsApp Audio

โœ… Send Sticker

โœ… Send Location

โœ… Send Contact

โœ… Send Reaction

โœ… Send Poll

โœ… Send List

โœ… Send Buttons

โŒ Mark Message As Read

โŒ Mark Message As Unread

โŒ Archive Chat

โŒ Delete Message for Everyone

โŒ Update Message

โŒ Send Presence (Chat Ctrl)

Chat & Contacts

โœ… Find Contacts

โœ… Find Chats

โŒ Update Block Status

โŒ Fetch Profile Picture URL

โŒ Get Base64

โŒ Find Messages

โŒ Find Status Message

Groups

โœ… Find Group by JID

โœ… Fetch All Groups

โœ… Find Group Members

โŒ Create Group

โŒ Update Group Picture

โŒ Update Group Subject

โŒ Update Group Description

โŒ Fetch Invite Code

โŒ Revoke Invite Code

โŒ Send Group Invite

โŒ Find Group by Invite Code

โŒ Update Group Members

โŒ Update Group Setting

โŒ Toggle Ephemeral

โŒ Leave Group

Profile Settings

โŒ Fetch Business Profile

โŒ Fetch Profile

โŒ Update Profile Name

โŒ Update Profile Status

โŒ Update Profile Picture

โŒ Remove Profile Picture

โŒ Fetch Privacy Settings

โŒ Update Privacy Settings

Bot Integrations

โŒ Typebot Integrations

โŒ OpenAI Integrations

โŒ Evolution Bot

โŒ Dify Bot

โŒ Flowise Bot

Other Integrations

โŒ Chatwoot

โŒ Websocket

โŒ SQS

โŒ RabbitMQ

For more information, refer to the Evolution API Documentation.

Deploy Server
A
security โ€“ no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aiteks-ltda/mcp-evolution-whatsapp-api'

If you have feedback or need assistance with the MCP directory API, please join our Discord server