Back to Browse

Mcp MCP Server

Developer ToolsLow Risk8.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Send and manage WhatsApp messages, contacts, templates, and events via Peach AI.

About

Send and manage WhatsApp messages, contacts, templates, and events via Peach AI.

Security Report

8.0
Low Risk8.0Low Risk

Valid MCP server (7 strong, 8 medium validity signals). 2 known CVEs in dependencies (0 critical, 2 high severity) Package registry verified. Imported from the Official MCP Registry.

9 files analyzed · 3 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-trypeach-io-mcp": {
      "args": [
        "-y",
        "@peachai/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@peachai/mcp

MCP (Model Context Protocol) server for the Peach WhatsApp messaging platform. Lets AI assistants like Claude send messages, manage templates, contacts, and media directly through your Peach account.

Requirements

  • Node.js 18 or higher
  • A Peach account with an API key

Getting your API key

Log in to app.trypeach.ai, go to Settings → API, and copy your API key.

Setup

Hosted Server setup

Recommended Peach offers hosted MCP server. We recommend using this.

{
  "mcpServers": {
    "peach": {
      "url": "https://app.trypeach.ai/api/mcp",
      "headers": {
        "Authorization": "<YOUR PEACH API KEY>"
      }
    }
  }
}

Claude Desktop

Add the following to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "peach": {
      "command": "npx",
      "args": ["-y", "@peachai/mcp"],
      "env": {
        "PEACH_API_KEY": "your-api-key"
      }
    }
  }
}

Restart Claude Desktop. You should see the Peach tools available in your conversation.

Cursor

Go to Settings → MCP and add:

{
  "peach": {
    "command": "npx",
    "args": ["-y", "@peachai/mcp"],
    "env": {
      "PEACH_API_KEY": "your-api-key"
    }
  }
}

Claude Code

Run this command to add Peach AI to your Claude Code setup:

claude mcp add --scope user --env PEACH_API_KEY=your-api-key peach -- npx -y @peachai/mcp

Or add it manually to your .mcp.json:

{
  "mcpServers": {
    "peach": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@peachai/mcp"],
      "env": {
        "PEACH_API_KEY": "your-api-key"
      }
    }
  }
}

Antigravity

Go to Antigravity settings -> Customizations. Click Open MCP Config and add the following:

{
  "mcpServers": {
    "peach": {
      "serverUrl": "https://app.trypeach.ai/api/mcp",
       "headers": {
        "Authorization": "<YOUR PEACH API KEY>"
      }
    }
  }
}

Available tools

Messaging

ToolDescription
peach_send_template_messageSend a WhatsApp template message to a contact
peach_send_app_messageTrigger a flow or app-initiated message
peach_connect_to_ai_agentSend a template and connect the contact to an AI agent
peach_get_event_statusCheck the status of a sent event
peach_list_template_messagesList sent template messages with filters

Broadcasts

ToolDescription
peach_launch_broadcastCreate and launch a broadcast campaign

Templates

ToolDescription
peach_list_templatesList all WhatsApp templates
peach_get_templateGet a specific template by ID or name
peach_create_templateCreate a new WhatsApp template
peach_update_templateUpdate an existing template
peach_submit_templateSubmit a template for Meta review
peach_pause_templatePause an approved template
peach_archive_templateArchive a template

Contacts

ToolDescription
peach_create_contactCreate or upsert a single contact
peach_create_contactsBulk create or upsert contacts
peach_update_contactUpdate a contact by phone number

Media

ToolDescription
peach_list_mediaList uploaded media files
peach_upload_mediaUpload a media file (base64)
peach_delete_mediaDelete a media file

Messages

ToolDescription
peach_list_messagesList messages with optional filters

Example prompts

  • "Send the order_confirmation template to +14155552671 with order ID 12345"
  • "Create a new MARKETING template called summer_sale with a body saying 'Get 20% off this weekend!'"
  • "List all my approved WhatsApp templates"
  • "Update the contact +14155552671's name to John Smith"
  • "Launch a broadcast using template promo_v2 to audience list abc123"

Reviews

No reviews yet

Be the first to review this server!