AutomationFlowsGeneral › Plivo Tool Mcp Server All 3 Operations

Plivo Tool Mcp Server All 3 Operations

Original n8n title: 🛠️ Plivo Tool Mcp Server 💪 All 3 Operations

ByDavid Ashby @cfomodz on n8n.io

Complete MCP server exposing all Plivo Tool operations to AI agents. Zero configuration needed - all 3 operations pre-built.

Event trigger★★★☆☆ complexityAI-powered8 nodesMcp TriggerPlivo Tool
General Trigger: Event Nodes: 8 Complexity: ★★★☆☆ AI nodes: yes Added:

This workflow corresponds to n8n.io template #5094 — we link there as the canonical source.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "nodes": [
    {
      "id": "e948d127-ef56-49db-a60b-ab15956ef5e0",
      "name": "Workflow Overview 0",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1460,
        -40
      ],
      "parameters": {
        "width": 420,
        "height": 800,
        "content": "## \ud83d\udee0\ufe0f Plivo Tool MCP Server\n\n### \ud83d\udccb Available Operations (3 total)\n\n**Call**: make\n**Mms**: send\n**Sms**: send\n\n### \u2699\ufe0f Setup Instructions\n\n1. **Import Workflow**: Load this workflow into your n8n instance\n\n1. **\ud83d\udd11 Add Credentials**: Configure Plivo Tool authentication in one tool node then open and close all others.\n2. **\ud83d\ude80 Activate**: Enable this workflow to start your MCP server\n3. **\ud83d\udd17 Get URL**: Copy webhook URL from MCP trigger (right side)\n4. **\ud83e\udd16 Connect**: Use MCP URL in your AI agent configurations\n\n### \u2728 Ready-to-Use Features\n\n\u2022 Zero configuration - all 3 operations pre-built\n\u2022 AI agents automatically populate parameters via `$fromAI()` expressions\n\u2022 Every resource and operation combination available\n\u2022 Native n8n error handling and response formatting\n\u2022 Modify parameter defaults in any tool node as needed\n\n### \ud83d\udcac Need Help?\nCheck the [n8n documentation](https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/) or ping me on [discord](https://discord.me/cfomodz) for MCP integration guidance or customizations."
      },
      "typeVersion": 1
    },
    {
      "id": "0f681e44-3884-410e-8eb1-4ae3a15d4055",
      "name": "Plivo Tool MCP Server",
      "type": "@n8n/n8n-nodes-langchain.mcpTrigger",
      "position": [
        -860,
        -40
      ],
      "parameters": {
        "path": "plivo-tool-mcp"
      },
      "typeVersion": 1
    },
    {
      "id": "4b6d73d4-16df-4ec7-a9c7-20eef89d8375",
      "name": "Make a call",
      "type": "n8n-nodes-base.plivoTool",
      "position": [
        -800,
        140
      ],
      "parameters": {
        "to": "={{ $fromAI('To', ``, 'string') }}",
        "from": "={{ $fromAI('From', ``, 'string') }}",
        "resource": "call",
        "answer_url": "={{ $fromAI('Answer_Url', ``, 'string') }}",
        "answer_method": "={{ $fromAI('Answer_Method', ``, 'string') }}"
      },
      "credentials": {},
      "typeVersion": 1
    },
    {
      "id": "458be9e7-9121-4011-ab52-167f9e21f620",
      "name": "Sticky Note 1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1000,
        120
      ],
      "parameters": {
        "color": 4,
        "width": 400,
        "content": "## Call"
      },
      "typeVersion": 1
    },
    {
      "id": "7f670150-81ca-476c-a8bc-98f165bc037e",
      "name": "Send an MMS",
      "type": "n8n-nodes-base.plivoTool",
      "position": [
        -800,
        380
      ],
      "parameters": {
        "to": "={{ $fromAI('To', ``, 'string') }}",
        "from": "={{ $fromAI('From', ``, 'string') }}",
        "message": "={{ $fromAI('Message', ``, 'string') }}",
        "resource": "mms",
        "media_urls": "={{ $fromAI('Media_Urls', ``, 'string') }}"
      },
      "credentials": {},
      "typeVersion": 1
    },
    {
      "id": "539a70ae-a772-4b22-8868-aed7191fe8b1",
      "name": "Sticky Note 2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1000,
        360
      ],
      "parameters": {
        "color": 5,
        "width": 400,
        "content": "## Mms"
      },
      "typeVersion": 1
    },
    {
      "id": "9ef9d130-f5d3-4c6c-aada-1c27ad109372",
      "name": "Send an SMS",
      "type": "n8n-nodes-base.plivoTool",
      "position": [
        -800,
        620
      ],
      "parameters": {
        "to": "={{ $fromAI('To', ``, 'string') }}",
        "from": "={{ $fromAI('From', ``, 'string') }}",
        "message": "={{ $fromAI('Message', ``, 'string') }}"
      },
      "credentials": {},
      "typeVersion": 1
    },
    {
      "id": "3047d812-9f1c-4af2-a066-f18a3bfc146d",
      "name": "Sticky Note 3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1000,
        600
      ],
      "parameters": {
        "color": 6,
        "width": 400,
        "content": "## Sms"
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "Make a call": {
      "ai_tool": [
        [
          {
            "node": "Plivo Tool MCP Server",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "Send an MMS": {
      "ai_tool": [
        [
          {
            "node": "Plivo Tool MCP Server",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "Send an SMS": {
      "ai_tool": [
        [
          {
            "node": "Plivo Tool MCP Server",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    }
  }
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Complete MCP server exposing all Plivo Tool operations to AI agents. Zero configuration needed - all 3 operations pre-built.

Source: https://n8n.io/workflows/5094/ — original creator credit. Request a take-down →

More General workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

General

Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator?

Mcp Trigger, Zendesk Tool
General

Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator?

Mcp Trigger, Mautic Tool
General

Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator?

Mcp Trigger, Twist Tool
General

Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator?

Mcp Trigger, Uptime Robot Tool
General

Need help? Want access to this workflow + many more paid workflows + live Q&A sessions with a top verified n8n creator?

Mcp Trigger, Security Scorecard Tool