plivo-mcp-server

plivo-mcp-server

1

Plivo MCP Server is a Message Control Protocol server designed to send SMS messages using Plivo's API, offering a straightforward implementation for SMS communication.

Plivo MCP Server

A Message Control Protocol (MCP) server implementation for sending SMS messages via Plivo's API.

Installation

  1. Install dependencies:

    pip install fastmcp plivo
    
  2. Configure Claude Desktop:

    {
      "mcpServers": {
        "plivo": {
          "command": "python",
          "args": ["server.py"],
          "env": {
            "PLIVO_AUTH_ID": "your_auth_id",
            "PLIVO_AUTH_TOKEN": "your_auth_token", 
            "MY_NUMBER": "your_plivo_number"
          }
        }
      }
    }