plivo-mcp-server

The Plivo MCP Server is an implementation of the Message Control Protocol (MCP) for sending SMS messages via Plivo's API. It requires installation of dependencies and configuration of environment variables to manage authentication credentials. This enables automation of SMS sending.

GitHub Stars

1

User Rating

Not Rated

Favorites

0

Views

17

Forks

0

Issues

0

README
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"
          }
        }
      }
    }