<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vonage Developers</title>
    <description>The latest articles on DEV Community by Vonage Developers (vonagedev).</description>
    <link>https://dev.to/vonagedev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F378%2F555ac53a-0535-46ae-8d35-c875f44eb774.jpg</url>
      <title>DEV Community: Vonage Developers</title>
      <link>https://dev.to/vonagedev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vonagedev"/>
    <language>en</language>
    <item>
      <title>Send Personalized SMS Messages from a Spreadsheet Using Claude Cowork and Vonage</title>
      <dc:creator>Michael Crump</dc:creator>
      <pubDate>Tue, 14 Jul 2026 19:25:48 +0000</pubDate>
      <link>https://dev.to/vonagedev/send-personalized-sms-messages-from-a-spreadsheet-using-claude-cowork-and-vonage-3b46</link>
      <guid>https://dev.to/vonagedev/send-personalized-sms-messages-from-a-spreadsheet-using-claude-cowork-and-vonage-3b46</guid>
      <description>&lt;p&gt;AI assistants are no longer just answering questions - they're taking action. Claude Cowork is a great example of this shift: it can access your local environment, read and write files, and automate tasks that would otherwise eat up your time. Pair it with the &lt;strong&gt;Vonage Tooling MCP Server&lt;/strong&gt;, and you can send real SMS messages to real people, all from a plain-English prompt.&lt;/p&gt;

&lt;p&gt;In this tutorial, we'll walk through exactly how to do that. We'll use Claude Cowork to read customer feedback from a local spreadsheet, generate personalized responses using AI, and automatically send each one as an SMS via Vonage.&lt;/p&gt;

&lt;p&gt;🎬 &lt;strong&gt;Watch the full video walkthrough here:&lt;/strong&gt; &lt;a href="https://www.youtube.com/watch?v=keMjIjOAkxk" rel="noopener noreferrer"&gt;Send a Text in Claude Cowork&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What You'll Build
&lt;/h2&gt;

&lt;p&gt;Imagine you run a restaurant. After each visit, customers text you their feedback, and you save their name, phone number, feedback, and a status column (&lt;code&gt;Pending&lt;/code&gt; / &lt;code&gt;Sent&lt;/code&gt;) in a spreadsheet called &lt;code&gt;restaurant_feedback.xlsx&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Using Claude Cowork, you'll create a task that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Reads the spreadsheet and finds all rows with a &lt;code&gt;Pending&lt;/code&gt; status&lt;/li&gt;
&lt;li&gt;Uses AI to determine the sentiment of each message and generate a personalized response&lt;/li&gt;
&lt;li&gt;Sends each response as an SMS using the Vonage Tooling MCP Server&lt;/li&gt;
&lt;li&gt;Updates the status column to &lt;code&gt;Sent&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;Before you get started, make sure you have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://claude.ai/download" rel="noopener noreferrer"&gt;Claude Desktop&lt;/a&gt; (latest version)&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://nodejs.org/" rel="noopener noreferrer"&gt;Node.js&lt;/a&gt; installed&lt;/li&gt;
&lt;li&gt;A &lt;a href="https://dashboard.vonage.com/" rel="noopener noreferrer"&gt;Vonage Developer account&lt;/a&gt; (free to sign up)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 1: Install the Vonage Tooling MCP Server
&lt;/h2&gt;

&lt;p&gt;Open Claude Desktop, click the &lt;strong&gt;Claude&lt;/strong&gt; menu in your computer's menu bar, then go to &lt;strong&gt;Settings → Developer → Edit Config&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This opens (or creates) a file called &lt;code&gt;claude_desktop_config.json&lt;/code&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS:&lt;/strong&gt; &lt;code&gt;~/Library/Application Support/Claude/claude_desktop_config.json&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Windows:&lt;/strong&gt; &lt;code&gt;%APPDATA%\Claude\claude_desktop_config.json&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Paste in the following configuration:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"vonage-mcp-server-api-bindings"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stdio"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="s2"&gt;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="s2"&gt;"@vonage/vonage-mcp-server-api-bindings"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"VONAGE_APPLICATION_ID"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_VONAGE_APPLICATION_ID&amp;gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"VONAGE_PRIVATE_KEY64"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_VONAGE_PRIVATE_KEY64&amp;gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"VONAGE_API_KEY"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_VONAGE_API_KEY&amp;gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"VONAGE_API_SECRET"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_VONAGE_API_SECRET&amp;gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"VONAGE_VIRTUAL_NUMBER"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_VONAGE_VIRTUAL_NUMBER&amp;gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"VONAGE_WHATSAPP_NUMBER"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_VONAGE_WHATSAPP_NUMBER&amp;gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"RCS_SENDER_ID"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"&amp;lt;YOUR_RCS_SENDER_ID&amp;gt;"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Step 2: Get Your Vonage Credentials
&lt;/h2&gt;

&lt;p&gt;Log in to the &lt;a href="https://dashboard.vonage.com/" rel="noopener noreferrer"&gt;Vonage Developer Dashboard&lt;/a&gt; and grab the following:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;API Key &amp;amp; Secret&lt;/strong&gt;&lt;br&gt;
From your homepage, click &lt;strong&gt;API Secret Management&lt;/strong&gt; to copy your API key and secret.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Application ID &amp;amp; Private Key&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;strong&gt;Build → Applications → Create a new application&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Give it a name and click &lt;strong&gt;Generate public and private key&lt;/strong&gt; - the private key will download automatically&lt;/li&gt;
&lt;li&gt;Under &lt;strong&gt;Capabilities&lt;/strong&gt;, toggle on &lt;strong&gt;Messages&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Generate new application&lt;/strong&gt; to get your Application ID&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Before pasting the private key into the config file, you'll need to base64 encode it. Use the encoder linked in the &lt;a href="https://github.com/Vonage-Community/vonage-mcp-server-api-bindings" rel="noopener noreferrer"&gt;Vonage MCP Server readme&lt;/a&gt; or run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;base64&lt;/span&gt; &lt;span class="nt"&gt;-i&lt;/span&gt; private.key
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Virtual Number&lt;/strong&gt;&lt;br&gt;
Go to &lt;strong&gt;Build → Phone Numbers&lt;/strong&gt; to find or purchase a virtual number. Link it to your application, and if you're in the US, make sure it's &lt;a href="https://developer.vonage.com/" rel="noopener noreferrer"&gt;10DLC compliant&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Once your config is saved, &lt;strong&gt;restart Claude Desktop&lt;/strong&gt;. To confirm the server is connected, open a new chat and ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Do you have access to Vonage's tooling server?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude should confirm and list its available capabilities.&lt;/p&gt;


&lt;h2&gt;
  
  
  Step 3: Set Up Your Spreadsheet
&lt;/h2&gt;

&lt;p&gt;For this demo, create a file called &lt;code&gt;restaurant_feedback.xlsx&lt;/code&gt; in a folder called &lt;code&gt;operations&lt;/code&gt;. It should have columns for:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Phone&lt;/th&gt;
&lt;th&gt;Feedback&lt;/th&gt;
&lt;th&gt;Response&lt;/th&gt;
&lt;th&gt;Status&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Jane&lt;/td&gt;
&lt;td&gt;+1...&lt;/td&gt;
&lt;td&gt;"Great food!"&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;Pending&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bob&lt;/td&gt;
&lt;td&gt;+1...&lt;/td&gt;
&lt;td&gt;"Service was slow."&lt;/td&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;td&gt;Pending&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The &lt;code&gt;Status&lt;/code&gt; column is what Claude will use to know which messages need to be addressed.&lt;/p&gt;


&lt;h2&gt;
  
  
  Step 4: Create a &lt;code&gt;claude.md&lt;/code&gt; Instructions File
&lt;/h2&gt;

&lt;p&gt;To avoid re-prompting Claude every time, create a file called &lt;code&gt;claude.md&lt;/code&gt; in your &lt;code&gt;operations&lt;/code&gt; folder. This is a plain-text markdown file where you store persistent instructions for Claude Cowork.&lt;/p&gt;

&lt;p&gt;Here's an example of what to put in it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Restaurant Feedback Automation&lt;/span&gt;

When prompted with &lt;span class="sb"&gt;`generate_responses`&lt;/span&gt;:
&lt;span class="p"&gt;-&lt;/span&gt; Read &lt;span class="sb"&gt;`restaurant_feedback.xlsx`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Find all rows where Status = "Pending"
&lt;span class="p"&gt;-&lt;/span&gt; Analyze the sentiment of each feedback message
&lt;span class="p"&gt;-&lt;/span&gt; If positive: set Response to "We're glad you had a positive experience!"
&lt;span class="p"&gt;-&lt;/span&gt; If negative: set Response to "We're sorry you had a negative experience!"
&lt;span class="p"&gt;-&lt;/span&gt; Save the responses back to the spreadsheet

When prompted with &lt;span class="sb"&gt;`send_responses`&lt;/span&gt;:
&lt;span class="p"&gt;-&lt;/span&gt; Read &lt;span class="sb"&gt;`restaurant_feedback.xlsx`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; For each row where Status = "Pending" and a Response exists:
&lt;span class="p"&gt;  -&lt;/span&gt; Send the Response as an SMS to the customer's Phone number using the Vonage Tooling MCP Server
&lt;span class="p"&gt;  -&lt;/span&gt; Update the Status to "Sent"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;💡 Tip: You can ask Claude itself to help you write your &lt;code&gt;claude.md&lt;/code&gt; file!&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Step 5: Run It in Claude Cowork
&lt;/h2&gt;

&lt;p&gt;Switch to &lt;strong&gt;Cowork mode&lt;/strong&gt; in Claude Desktop. Create a new task and click &lt;strong&gt;"Work in a project"&lt;/strong&gt; in the bottom-left corner of the prompt box. Select your &lt;code&gt;operations&lt;/code&gt; folder.&lt;/p&gt;

&lt;p&gt;Now run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;generate_responses
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Claude will scan the spreadsheet, find the &lt;code&gt;Pending&lt;/code&gt; rows, analyze sentiment, and write personalized responses back to the file.&lt;/p&gt;

&lt;p&gt;When you're ready to send, run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;send_responses
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Claude will use the Vonage Tooling MCP Server to send each SMS and update the status to &lt;code&gt;Sent&lt;/code&gt;. Open your spreadsheet to confirm - the status column should now show &lt;code&gt;Sent&lt;/code&gt; for each row.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;This is just the beginning of what you can do with the Vonage Tooling MCP Server. Beyond SMS, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Send WhatsApp or RCS messages&lt;/strong&gt; by populating the corresponding fields in your config&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Trigger automated voice calls&lt;/strong&gt; instead of (or in addition to) texts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Track delivery status&lt;/strong&gt; by saving read/delivered receipts back to your spreadsheet&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build multi-channel workflows&lt;/strong&gt; that escalate from SMS to voice if a message goes unread&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;📺 &lt;a href="https://www.youtube.com/watch?v=keMjIjOAkxk" rel="noopener noreferrer"&gt;Video: Send a Text in Claude Cowork&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📦 &lt;a href="https://github.com/Vonage-Community/vonage-mcp-server-api-bindings" rel="noopener noreferrer"&gt;Vonage Tooling MCP Server on GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📖 &lt;a href="https://modelcontextprotocol.io/docs/develop/connect-local-servers" rel="noopener noreferrer"&gt;Claude MCP Setup Docs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🛠️ &lt;a href="https://dashboard.vonage.com/" rel="noopener noreferrer"&gt;Vonage Developer Dashboard&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📝 &lt;a href="https://developer.vonage.com/en/blog" rel="noopener noreferrer"&gt;Vonage Developer Blog&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Have questions or something cool you built with this? Drop a comment below or connect with us on the &lt;a href="https://developer.vonage.com/en/community/slack" rel="noopener noreferrer"&gt;Vonage Community Slack&lt;/a&gt;. We'd love to see what you create!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>vonage</category>
      <category>sms</category>
    </item>
    <item>
      <title>The Vonage Dev Discussion: How AI is transforming software development</title>
      <dc:creator>Liz Acosta</dc:creator>
      <pubDate>Thu, 21 May 2026 19:25:53 +0000</pubDate>
      <link>https://dev.to/vonagedev/the-vonage-dev-discussion-how-ai-is-transforming-software-development-1pof</link>
      <guid>https://dev.to/vonagedev/the-vonage-dev-discussion-how-ai-is-transforming-software-development-1pof</guid>
      <description>&lt;p&gt;Welcome back to the &lt;strong&gt;Vonage Dev Discussion&lt;/strong&gt;! Recently, members of the Vonage Developer Relations team met up in New York to create content, make plans, and hang out. We even got the chance to record at a super cool studio in the Big Apple!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fubkm67q08onq4i4foxwx.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fubkm67q08onq4i4foxwx.jpg" alt="A photo of members from the Vonage Developer Relations team sitting in a recording studio." width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We took the opportunity to chat about something that’s been on everybody’s mind: artificial intelligence. We talked about how AI is impacting developer relations and tech in general.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/-d9XFWm86NM?start=880"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;We have a &lt;a href="https://vonage.dev/4wI4vCN" rel="noopener noreferrer"&gt;second part coming out soon&lt;/a&gt;, but in the meantime, we want to know: &lt;strong&gt;What’s one thing that AI helps you with? Where do you still prefer to do the work yourself?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgku7svth7dz5un215gf5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgku7svth7dz5un215gf5.png" alt="A stylized robot with the questions: What’s one thing that AI helps you with? Where do you still prefer to do the work yourself?" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We’d love to hear your thoughts in the comments below 🤖👇&lt;/p&gt;

</description>
      <category>ai</category>
      <category>discuss</category>
      <category>devrel</category>
    </item>
    <item>
      <title>The Vonage Dev Discussion: Defining what an API is</title>
      <dc:creator>Liz Acosta</dc:creator>
      <pubDate>Wed, 13 May 2026 20:49:48 +0000</pubDate>
      <link>https://dev.to/vonagedev/the-vonage-dev-discussion-defining-what-an-api-is-3806</link>
      <guid>https://dev.to/vonagedev/the-vonage-dev-discussion-defining-what-an-api-is-3806</guid>
      <description>&lt;p&gt;This week we kicked off the first in a series of office hours. Our office hours are a judgment-free space for developers to come and ask questions about using Vonage – and get an answer live from an actual human!&lt;/p&gt;

&lt;p&gt;Being able to ask questions without fear of judgment is so important for beginner engineers and being able to &lt;em&gt;answer&lt;/em&gt; those questions is equally important for senior engineers. Have you ever noticed how explaining something makes you &lt;em&gt;really think&lt;/em&gt; about what you actually know or don’t know? It's a really good feedback loop!&lt;/p&gt;

&lt;p&gt;So here’s a chance to test your knowledge: &lt;strong&gt;How would you explain what an API is to someone? What are some examples of APIs you use?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd0niycyz5pbvuiefxlb6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd0niycyz5pbvuiefxlb6.png" alt="A stylized robot with the questions: How would you explain what an API is to someone? What are some examples of APIs you use?" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you’re new to APIs, here’s a walkthrough of how to use one from our office hours:&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/T5gPTyXGfOg?start=701"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;And don’t worry! If you run into any issues, we can help you out in our &lt;a href="https://vonage.dev/4uNHahr" rel="noopener noreferrer"&gt;next office hours&lt;/a&gt;. Check out the &lt;a href="https://vonage.dev/4uGRBmQ" rel="noopener noreferrer"&gt;office hours schedule&lt;/a&gt; and make sure to subscribe to our &lt;a href="https://www.youtube.com/@VonageDev/streams" rel="noopener noreferrer"&gt;YouTube channel&lt;/a&gt; for future streams and videos ♥️🤓&lt;/p&gt;

&lt;p&gt;Let's keep the API conversation going in the comments below! 💻 👇&lt;/p&gt;

</description>
      <category>vonage</category>
      <category>api</category>
      <category>discuss</category>
      <category>beginners</category>
    </item>
    <item>
      <title>The Vonage Dev Discussion: Making mistakes</title>
      <dc:creator>Liz Acosta</dc:creator>
      <pubDate>Fri, 24 Apr 2026 20:01:26 +0000</pubDate>
      <link>https://dev.to/vonagedev/the-vonage-dev-discussion-making-mistakes-32mc</link>
      <guid>https://dev.to/vonagedev/the-vonage-dev-discussion-making-mistakes-32mc</guid>
      <description>&lt;p&gt;Nobody is perfect! Even the most seasoned developers have made mistakes – it’s all just part of the learning process.&lt;/p&gt;

&lt;p&gt;One mistake that is so common in software development is accidentally pushing secrets to a public repository 🙈🙉🙊&lt;/p&gt;


&lt;div&gt;
    &lt;iframe src="https://www.youtube.com/embed/2bMfzLovLWM"&gt;
    &lt;/iframe&gt;
  &lt;/div&gt;


&lt;p&gt;Fortunately, there are lots of different guardrails you can put in place to help prevent the exposure of sensitive information like API keys, and we’ve covered a few of them in &lt;a href="https://vonage.dev/48R3sWS" rel="noopener noreferrer"&gt;these posts about environment variables&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;But we’re curious: &lt;strong&gt;What are some mistakes you’ve made as a developer? What did you learn from those mistakes?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb9bjudjoqch6zqyh7vtd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb9bjudjoqch6zqyh7vtd.png" alt="A stylized illustration of the Vonage mascot with the text: What are some mistakes you’ve made as a developer? What did you learn from those mistakes?" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Share your wisdom in the comments below! 🙏👇&lt;/p&gt;

</description>
      <category>security</category>
      <category>discuss</category>
      <category>python</category>
    </item>
    <item>
      <title>The Vonage Dev Discussion: Builder pattern</title>
      <dc:creator>Liz Acosta</dc:creator>
      <pubDate>Tue, 07 Apr 2026 16:48:06 +0000</pubDate>
      <link>https://dev.to/vonagedev/the-vonage-dev-discussion-builder-pattern-1f45</link>
      <guid>https://dev.to/vonagedev/the-vonage-dev-discussion-builder-pattern-1f45</guid>
      <description>&lt;p&gt;Have you ever heard of the builder pattern? 🧰🏘️&lt;/p&gt;

&lt;p&gt;In software development, the builder pattern is a &lt;a href="https://vonage.dev/4c8VdpU" rel="noopener noreferrer"&gt;creational design pattern&lt;/a&gt; that lets you construct complex objects step by step. It is especially helpful when you have complex classes of objects that can be extended in many different ways.&lt;/p&gt;

&lt;p&gt;In this video, our developer advocates Guillaume Faas and Jeremy Foster discuss the builder pattern and how it is implemented in the &lt;a href="https://github.com/vonage/vonage-dotnet-sdk" rel="noopener noreferrer"&gt;Vonage .NET SDK&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/h31xOHKJ7D8"&gt;
  &lt;/iframe&gt;
&lt;br&gt;
The builder pattern &lt;a href="https://dev.to/tr00d/why-i-use-and-abuse-the-builder-pattern-3lbm"&gt;sparks debate in the dev community&lt;/a&gt;. Some swear by it, others see it as over-engineering. We want to know: &lt;strong&gt;What's your take?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do you use the builder pattern?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you use it in your own work?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How would you explain it to someone?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu5gw4srnoxebb0ulget7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu5gw4srnoxebb0ulget7.png" alt="A graphic of the Vonage mascot with the text: Do you use the builder pattern? How do you use it in your own work? How would you explain it to someone?" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Share your experience and knowledge of the builder pattern in the comments below! &lt;/p&gt;

&lt;p&gt;⚒️👇&lt;/p&gt;

</description>
      <category>dotnet</category>
      <category>architecture</category>
      <category>discuss</category>
    </item>
    <item>
      <title>The Vonage Dev Discussion: Open source</title>
      <dc:creator>Liz Acosta</dc:creator>
      <pubDate>Wed, 25 Mar 2026 16:59:12 +0000</pubDate>
      <link>https://dev.to/vonagedev/the-vonage-dev-discussion-open-source-ipb</link>
      <guid>https://dev.to/vonagedev/the-vonage-dev-discussion-open-source-ipb</guid>
      <description>&lt;p&gt;At &lt;a href="https://vonage.dev/41y34Zf" rel="noopener noreferrer"&gt;Women+ in Open Source Day&lt;/a&gt;, I got to try my hand at making a contribution to &lt;a href="https://vonage.dev/4uOwPmf" rel="noopener noreferrer"&gt;Apache Spark&lt;/a&gt;. While I didn’t manage to clone and build the project within the allotted time, I did get to speak with one of the project’s key contributors, &lt;a href="https://vonage.dev/4rQF26G" rel="noopener noreferrer"&gt;Holden Karau&lt;/a&gt;, and was inspired by her encouragement for all sorts of people to get involved.&lt;/p&gt;

&lt;p&gt;Contributing to open source can be intimidating! And in the age of AI, contributors from diverse perspectives are even more important.&lt;/p&gt;

&lt;p&gt;So for our second ever Dev Discussion, we want to know: &lt;strong&gt;What is your advice for getting started contributing to open source projects?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9i3f701wd102z9xapcdx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9i3f701wd102z9xapcdx.png" alt="A graphic of a robot with a speech bubble that reads, " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Share your advice in the comments below along with links to some of your favorite open source projects! 🖥️ 🎉👇&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>opensource</category>
      <category>womenintech</category>
    </item>
    <item>
      <title>MCP, n8n, Symfony: New tutorials to kickstart 2026 🚀</title>
      <dc:creator>Daniela Facchinetti</dc:creator>
      <pubDate>Fri, 20 Feb 2026 11:07:25 +0000</pubDate>
      <link>https://dev.to/vonagedev/mcp-n8n-symfony-new-tutorials-to-kickstart-2026-36nm</link>
      <guid>https://dev.to/vonagedev/mcp-n8n-symfony-new-tutorials-to-kickstart-2026-36nm</guid>
      <description>&lt;p&gt;Hello Developers!&lt;/p&gt;

&lt;p&gt;Let’s kick off the new year with a quick look at our Q4 2025 launches. Then get ready for two new releases: &lt;strong&gt;Identity Insights in GA&lt;/strong&gt; plus &lt;strong&gt;Silent Authentication Advanced in Verify API&lt;/strong&gt;. And don’t forget the fresh tutorials — including AI-powered WhatsApp agents, Symfony SMS to 2FA, phone number insights, and Network APIs — to help you build smarter and more securely.&lt;/p&gt;

&lt;p&gt;Check them out and start building something amazing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RELEASES and ANNOUNCEMENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/vonage-q4-2025-recap-highlights-and-insights" rel="noopener noreferrer"&gt;Vonage Q4 2025 Recap: Highlights and Insights&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Last quarter doubled down on the fundamentals you count on every day. From stronger identity signals and AI-ready workflows to unified reporting and Video API improvements, the team shipped updates that make building easier and more reliable. Revisit how the updates help you build with confidence on Vonage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="//developer.vonage.com/en/blog/identity-insights-api-now-general-available"&gt;Identity Insights API Now Generally Available&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Your feedback was invaluable to refine real-time, production-ready phone number intelligence for identity verification, fraud prevention, and data enrichment. And now it’s all backed by enterprise-grade support.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/introducing-silent-authentication-advanced-in-the-verify-api" rel="noopener noreferrer"&gt;Introducing Silent Authentication Advanced in the Verify API&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The next evolution of authentication brings seamless, device-based verification beyond cellular networks to Wi-Fi and VPN. U.S. developers can be among the first to test this next-gen authentication flow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TUTORIALS and INSPIRATION&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/contribute-to-the-open-source-vonage-mcp-tooling-server" rel="noopener noreferrer"&gt;Contribute to the Open Source Vonage MCP Tooling Server&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Vonage MCP Tooling Server lets you power AI agents across messaging and voice channels. Tap into the open-source design to add new capabilities like MMS, SIM swap checks, or Voice API features.&lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt; Benjamin Aronov&lt;/a&gt; shows how to add a new tool and submit a Pull Request to help shape the future of the platform.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=r134zNQO1tQ" rel="noopener noreferrer"&gt;What Are Network APIs?&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.vonage.com/en/blog/authors/jeremy-foster" rel="noopener noreferrer"&gt;Jeremy Foster&lt;/a&gt; provides a quick, developer-friendly intro to Vonage Network APIs. He also explains carrier-verified signals to help you verify identity, reduce fraud, and build trusted authentication experiences at scale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/eliminating-hallucinations-in-llm-driven-virtual-agents" rel="noopener noreferrer"&gt;Eliminating Hallucinations in LLM-Driven Virtual Agents&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Vonage AI Studio lets you build smart, low-code virtual agents. Recent updates improve LLM accuracy, stability, and reliability.&lt;a href="http://developer.vonage.com/en/blog/authors/shir-hilel" rel="noopener noreferrer"&gt; Shir Hilel&lt;/a&gt; shares insights and how these changes make conversations more predictable and grounded.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="//developer.vonage.com/en/blog/build-a-5-node-ai-whatsapp-receptionist-with-n8n-and-vonage-mcp-tools"&gt;Build a 5-Node AI WhatsApp Receptionist With n8n and Vonage MCP Tools&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt;Benjamin Aronov&lt;/a&gt; reviews the steps to automate guest support — such as managing routine questions, escalating urgent issues through SMS or voice, and keeping context with a simple, reusable workflow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/learn-about-phone-number-validity" rel="noopener noreferrer"&gt;Learn About Phone Number Validity &lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Accurate numbers are key for one-time passwords, updates, and support efficiency. Vonage Identity Insights API helps verify numbers across formats, carriers, and reachability checks.&lt;a href="https://developer.vonage.com/en/blog/authors/amanda-cavallaro" rel="noopener noreferrer"&gt; Amanda Cavallaro&lt;/a&gt; explains how ensuring number validity improves user experience and reduces errors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=lHP943w_7Bk" rel="noopener noreferrer"&gt;Send SMS Text Message With Symfony&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Symfony keeps innovating in PHP, from API Platform to FrankenPHP. Curious about CPaaS? In this video, &lt;a href="https://developer.vonage.com/en/blog/authors/alexandra-williams" rel="noopener noreferrer"&gt;Alexandra Williams&lt;/a&gt; shows Symfony developers how to send an SMS with Vonage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="//developer.vonage.com/en/blog/how-to-add-two-factor-authentication-with-node-js-and-express"&gt;Add Two-Factor Authentication With Node.js, Express, and Vonage&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Two-factor authentication (2FA) adds an extra layer of security using a password plus a verification token. &lt;a href="https://developer.vonage.com/en/blog/authors/julia" rel="noopener noreferrer"&gt;Julia Biro&lt;/a&gt; demonstrates 2FA implementation with Vonage Verify API and Express.js.&lt;/p&gt;

</description>
      <category>vonagenews</category>
    </item>
    <item>
      <title>The Vonage Dev Discussion: Music</title>
      <dc:creator>Liz Acosta</dc:creator>
      <pubDate>Tue, 17 Feb 2026 20:50:55 +0000</pubDate>
      <link>https://dev.to/vonagedev/the-vonage-dev-discussion-4h52</link>
      <guid>https://dev.to/vonagedev/the-vonage-dev-discussion-4h52</guid>
      <description>&lt;p&gt;Hey developers! We want to hear from you for a series we’re calling the &lt;strong&gt;Dev Discussion&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;What is the Dev Discussion? We want it to be a space where we can take a break and talk about the human side of software development.&lt;/p&gt;

&lt;p&gt;Our first Dev Discussion topic is about &lt;strong&gt;music&lt;/strong&gt; 🎶&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcmfl6w1ljwabvanxnoas.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcmfl6w1ljwabvanxnoas.jpg" alt="A stylized illustration of a robot with the text: " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Speaking of music and tech, you’ve probably heard &lt;a href="https://www.qobuz.com/ie-en/album/opus-no-1-tim-carleton-darrick-deel/vxcde5txl6b9a" rel="noopener noreferrer"&gt;this track&lt;/a&gt; while waiting on hold ☎️🎵&lt;/p&gt;

&lt;p&gt;Did you know it was composed in 1989 by Darrick Deel and Tim Carleton, a &lt;a href="https://www.thisamericanlife.org/516/stuck-in-the-middle-2014/act-one-0" rel="noopener noreferrer"&gt;self described&lt;/a&gt;, “Yanni-loving computer nerd” who was just “messing around with a drum machine and a synthesizer” in his parents' garage in California?&lt;/p&gt;

&lt;p&gt;You can &lt;a href="https://vonage.dev/46NixYz" rel="noopener noreferrer"&gt;make it your hold music too&lt;/a&gt;! &lt;/p&gt;

&lt;p&gt;Besides cool drum machines and chill synthesizers, we want to know:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is currently playing in your headphones?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Does what you listen to change according to what you are working on?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do you ever work in complete silence?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Feel free to drop those playlists in the comments below 🎶 👇&lt;/p&gt;

</description>
      <category>music</category>
      <category>discuss</category>
      <category>api</category>
    </item>
    <item>
      <title>🎁 Holiday Update: MCP Tooling Server + LinkedIn Page</title>
      <dc:creator>Daniela Facchinetti</dc:creator>
      <pubDate>Fri, 09 Jan 2026 13:41:41 +0000</pubDate>
      <link>https://dev.to/vonagedev/holiday-update-mcp-tooling-server-linkedin-page-1iec</link>
      <guid>https://dev.to/vonagedev/holiday-update-mcp-tooling-server-linkedin-page-1iec</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;An eventful 2025 closes with two big announcements: the introduction of the &lt;strong&gt;&lt;a href="https://github.com/Vonage-Community/vonage-mcp-server-api-bindings/tree/main" rel="noopener noreferrer"&gt;Vonage MCP Tooling Server&lt;/a&gt;&lt;/strong&gt; and the launch of the &lt;strong&gt;&lt;a href="http://vonage.dev/Linkedin" rel="noopener noreferrer"&gt;Vonage Developer LinkedIn Page&lt;/a&gt;&lt;/strong&gt;. Read on for more updates, fresh tutorials, and new ways to get the most out of Vonage APIs. &lt;/p&gt;

&lt;p&gt;Happy Holidays, and see you in the new year!&lt;/p&gt;

&lt;p&gt;Daniela, Developer Relations Content Manager&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RELEASES and ANNOUNCEMENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/introducing-the-vonage-mcp-tooling-server" rel="noopener noreferrer"&gt;Introducing the Vonage MCP Tooling Server&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Now, AI agents like Claude and Cursor can send messages, provision numbers, check balances, and manage your Vonage apps directly from a prompt. It’s open-source and secure, plus it comes with ready-to-use tools you can easily extend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/introducing-the-new-vonage-developer-linkedin-page" rel="noopener noreferrer"&gt;Introducing the Vonage Developer LinkedIn Page&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Here’s your space to stay up to date with insights and news, learn, connect with the community … not to mention participate in events, webinars, contests, and more. Make sure to follow us.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/announcing-ssl-security-enhancements" rel="noopener noreferrer"&gt;Announcing SSL Security Enhancements&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;These updates keep Vonage APIs securely encrypted and compatible with modern clients — and the benefits now extend to other Vonage domains. Learn how these SSL updates help protect your data and ensure secure end-to-end communications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TUTORIALS and INSPIRATION&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/spread-holiday-cheer-with-ai-agents-and-vonage-mcp-messaging-tools" rel="noopener noreferrer"&gt;Spread Holiday Cheer With AI Agents and Vonage MCP Messaging Tools&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;One-size-fits-all messaging no longer works. Some users prefer SMS, others like WhatsApp, and RCS adoption is growing fast.&lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt; Benjamin Aronov&lt;/a&gt; shows how to integrate an AI agent with the Vonage MCP Server to send holiday messages that automatically respect preferences, channels, and even language.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/monitor-your-webhooks-with-laravel-nightwatch" rel="noopener noreferrer"&gt;Monitor Your Webhooks With Laravel Nightwatch&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Monitoring PHP applications can be daunting. Laravel Nightwatch changes that with a native, easy-to-use way to track application events and performance.&lt;a href="https://developer.vonage.com/en/blog/authors/james-seconde" rel="noopener noreferrer"&gt; Jim Seconde&lt;/a&gt; spins up a simple webhook and monitors it all through the Nightwatch dashboard.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=LNH1cfTVcG8" rel="noopener noreferrer"&gt;Send and Receive WhatsApp Messages With Python&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.vonage.com/en/blog/authors/alexandra-williams" rel="noopener noreferrer"&gt;Alexandra Williams&lt;/a&gt; teaches you to use Flask to send and receive messages — without the full Vonage app or WhatsApp Business Account — making it the fastest way to experiment with Vonage Messages API.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/improve-the-user-video-experience-with-real-time-quality-monitoring" rel="noopener noreferrer"&gt;Improve the User Video Experience With Real-Time Quality Monitoring &lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Did you know there’s a standard for how good your video looks and feels? The Mean Opinion Score (MOS) bridges the gap between technical metrics like jitter and latency with actual user satisfaction.&lt;a href="https://developer.vonage.com/en/blog/authors/amanda-cavallaro" rel="noopener noreferrer"&gt; Amanda Cavallaro&lt;/a&gt; explains MOS, why it’s subjective, and how your Vonage video application can use it to enhance user experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/identity-insights-api-use-cases-for-fraud-prevention" rel="noopener noreferrer"&gt;Identity Insights API Use Cases for Fraud Prevention &lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Fraud threats are evolving fast, with AI-driven scams targeting businesses of all sizes. Staying ahead requires smarter detection, stronger prevention, and constant vigilance.&lt;a href="https://developer.vonage.com/en/blog/authors/amanda-cavallaro" rel="noopener noreferrer"&gt; Amanda Cavallaro&lt;/a&gt; explores four identity insights use cases and how Vonage Identity Insights API provides real-time access to carrier, subscriber, and device data to help combat fraud.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EVENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://luma.com/347t02d7" rel="noopener noreferrer"&gt;Laravel Community Meetup&lt;/a&gt;&lt;/strong&gt; (London, 21 Jan.) &lt;/p&gt;

&lt;p&gt;The Vonage London office is hosting the next Laravel community meetup. Join us for an evening of networking, great talks, and friendly faces. Whether you’re a long-time member or brand new to the community, we’d love to see you there.&lt;/p&gt;

</description>
      <category>vonagenews</category>
    </item>
    <item>
      <title>Now live: U.S. Network APIs + Video API updates</title>
      <dc:creator>Daniela Facchinetti</dc:creator>
      <pubDate>Fri, 28 Nov 2025 17:19:10 +0000</pubDate>
      <link>https://dev.to/vonagedev/now-live-us-network-apis-video-api-updates-4fk0</link>
      <guid>https://dev.to/vonagedev/now-live-us-network-apis-video-api-updates-4fk0</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;November brings exciting news: the launch of &lt;strong&gt;Network APIs in the U.S&lt;/strong&gt; and &lt;strong&gt;important Video API updates&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;As always, we bring you fresh tutorials to explore — including guides on &lt;strong&gt;RCS&lt;/strong&gt;, &lt;strong&gt;MCP&lt;/strong&gt;, and &lt;strong&gt;Laravel&lt;/strong&gt; — perfect for levelling up your developer skills. Stay tuned, dive in, and make the most of these updates to supercharge your projects. &lt;/p&gt;

&lt;p&gt;Best,&lt;/p&gt;

&lt;p&gt;Daniela - Developer Relations Content Manager @ Vonage&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RELEASES and ANNOUNCEMENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/vonage-launches-first-aggregated-network-apis-in-the-u-s-" rel="noopener noreferrer"&gt;Vonage Launches First Aggregated Network APIs in the U.S.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Vonage brings aggregated Network API access for AT&amp;amp;T, T-Mobile, and Verizon. Developers can now tap into carrier-verified insights with a single integration to enable smarter, real-time identity, security, and connectivity features — minus individual carrier complexities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/vonage-reports-api-now-supports-video-api" rel="noopener noreferrer"&gt;Vonage Reports API Now Supports Video API&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Attention Unified Dashboard users — track all your Video, SMS, Messages, Voice, and Verify analytics in a single, easy-to-use interface.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/announcing-v1-3-0-of-the-vonage-video-reference-app-for-react" rel="noopener noreferrer"&gt;Announcing v1.3.0 of the Vonage Video Reference App for React&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The latest release introduces major UX upgrades, polished interfaces, and enhanced backend customization.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/announcing-v2-32-0-of-the-vonage-video-api" rel="noopener noreferrer"&gt;Announcing v2.32.0 of the Vonage Video API&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You’ll enjoy advanced monitoring tools, finer video quality control across all major SDKs, and numerous stability and performance improvements, especially for web and iOS.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TUTORIALS and INSPIRATION&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/step-by-step-adding-vonage-apis-to-your-ai-agent-with-mcp" rel="noopener noreferrer"&gt;Step-by-Step: Adding Vonage APIs to Your Agent With MCP&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.vonage.com/en/blog/authors/christankersley" rel="noopener noreferrer"&gt;Chris Tankerlsey&lt;/a&gt; guides you on how to create a chatbot using Anthropic Claude API and the Vonage Model Context Protocol (MCP) Tooling Server. So go ahead and chat, plus perform actions like checking account balances.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=UOA1lLa9uLs" rel="noopener noreferrer"&gt;Introducing MCP: AI Meets Programmable Communications With Vonage&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI agents can now handle tasks like “Send a text” with no code required. The Model Context Protocol (MCP) makes it possible by giving agents access to APIs and data across systems.&lt;a href="https://developer.vonage.com/en/blog/authors/alexandra-williams" rel="noopener noreferrer"&gt; Alexandra Williams&lt;/a&gt; details how Vonage is adopting this open standard with our newly launched Documentation MCP Server.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/integrate-rcs-into-your-authentication-workflows" rel="noopener noreferrer"&gt;Integrate RCS Into Your Authentication Workflows&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;RCS brings SMS into the modern era with features like verified branding and read receipts.&lt;a href="https://developer.vonage.com/en/blog/authors/amanda-cavallaro" rel="noopener noreferrer"&gt; Amanda Cavallaro&lt;/a&gt; shows how to integrate RCS-based 2FA using Vonage Verify API, with automatic fallback to SMS when needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/sandbox-quickstart-send-and-receive-whatsapp-messages-with-python" rel="noopener noreferrer"&gt;Sandbox Quickstart: Send and Receive WhatsApp Messages With Python&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It’s time to test a chatbot, build a quick messaging prototype, and explore Vonage Messages API.&lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt; Benjamin Aronov&lt;/a&gt; shows you how to send and receive WhatsApp messages using Python and the Vonage WhatsApp Sandbox — with no need for a full app setup or WhatsApp Business Account (WABA).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/the-laravel-ai-experience-coding-basic-rcs-functionality" rel="noopener noreferrer"&gt;The Laravel AI Experience: Coding Basic RCS Functionality &lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI is rapidly changing the developer experience, from tools like LaraCopilot to specialized MCP servers such as Laravel Boost.&lt;a href="https://developer.vonage.com/en/blog/authors/james-seconde" rel="noopener noreferrer"&gt; Jim Seconde&lt;/a&gt; explores how AI can help you prototype a Laravel app that sends and receives RCS messages, highlighting the new possibilities in PHP and Laravel development.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/laravel-12-starter-kits-explained-react-vue-and-livewire" rel="noopener noreferrer"&gt;Laravel 12 Starter Kits Explained: React, Vue, and Livewire&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The updated Laravel 12 starter kits simplify setup. Choose React, Vue, or Livewire to match your preferred workflow and get routes, controllers, and authentication ready out of the box.&lt;a href="https://developer.vonage.com/en/blog/authors/diana-pham" rel="noopener noreferrer"&gt; Diana Pham&lt;/a&gt; shows what each kit offers and how to find the best fit for your next Laravel app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EVENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://reinvent.awsevents.com/" rel="noopener noreferrer"&gt;AWS re:Invent&lt;/a&gt;&lt;/strong&gt;(Las Vegas, 1 to 5 Dec.)&lt;/p&gt;

&lt;p&gt;The Vonage Developer Ecosystem team is headed to Vegas. If your startup will be there, we’d love to connect. Book a meeting at: &lt;a href="mailto:startups@vonage.com"&gt;startups@vonage.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>vonagenews</category>
    </item>
    <item>
      <title>🚀New Reports API, Documentation MCP Server, RCS tutorials</title>
      <dc:creator>Daniela Facchinetti</dc:creator>
      <pubDate>Mon, 03 Nov 2025 12:59:07 +0000</pubDate>
      <link>https://dev.to/vonagedev/new-reports-api-documentation-mcp-server-rcs-tutorials-2kaf</link>
      <guid>https://dev.to/vonagedev/new-reports-api-documentation-mcp-server-rcs-tutorials-2kaf</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;This month brings some big updates: the launch of our new &lt;strong&gt;Reports API&lt;/strong&gt; and the &lt;strong&gt;Documentation MCP Server&lt;/strong&gt;. You’ll also find plenty of fresh content, from deep dives into &lt;strong&gt;RCS&lt;/strong&gt; to hands-on tutorials that showcase what’s possible with our APIs. Plus, don’t miss your chance to &lt;strong&gt;join our Developer Community survey&lt;/strong&gt; or &lt;strong&gt;meet us at an upcoming event&lt;/strong&gt;. We’d love to hear from you!&lt;/p&gt;

&lt;p&gt;Daniela (Developer Relations Content Manager @ Vonage)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RELEASES and ANNOUNCEMENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/introducing-the-reports-api-by-vonage" rel="noopener noreferrer"&gt;Introducing Vonage Reports API&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;No more stitching data from multiple sources. Get a centralized, consistent view of your communications in one place. Track delivery status, view billing info, detect fraud, and feed live data into your own dashboards with ease.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/vonage-q3-2025-highlights-new-apis-tools-and-features" rel="noopener noreferrer"&gt;Vonage Q3 2025 Highlights: New APIs, Tools, and Features&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Q3 was all about giving developers more power with less friction. We launched Beta Identity Insights API, added smarter post-call tools with AI summaries, improved messaging reliability, made video calls smoother with scalable video coding and live captions, and more!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/introducing-the-vonage-documentation-mcp-server" rel="noopener noreferrer"&gt;Introducing the Vonage Documentation MCP Server&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Vonage Documentation MCP Server gives you access to Vonage Docs directly from your development environment or AI assistant. Whether in VS Code, Cursor, or with tools like Claude, documentation is now right where you need it, without interrupting your workflow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SURVEY&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://wkf.ms/45VWSfI" rel="noopener noreferrer"&gt;Your Viewpoint Questionnaire — Developer Community &lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Vonage Developer Community offers workspaces, channels, events, and activities to help developers connect and support one another. We’d love your feedback to improve the Developer Community.&lt;a href="https://wkf.ms/45VWSfI" rel="noopener noreferrer"&gt; Complete the questionnaire&lt;/a&gt; &lt;strong&gt;by Nov. 30, 2025, *&lt;em&gt;to receive a *&lt;/em&gt;€10 Vonage coupon&lt;/strong&gt;. Limited to one entry per person. Open to Vonage Viewpoint User Group participants only.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TUTORIALS and INSPIRATION&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/introducing-mcp-ai-meets-programmable-communications-with-vonage" rel="noopener noreferrer"&gt;Introducing MCP: AI Meets Programmable Communications With Vonage&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With the new Model Context Protocol (MCP), agents can dynamically discover and use tools and APIs. &lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt;Benjamin Aronov&lt;/a&gt; explains how Vonage is bringing this to life with our Documentation MCP Server and upcoming Tooling Server.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/rcs-messaging-with-laravel-livewire-reverb-and-echo" rel="noopener noreferrer"&gt;RCS LLRE: RCS With Laravel, Livewire, Reverb, and Echo &lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
What better way to show off Laravel Livewire’s real-time power than building an RCS messenger? &lt;a href="https://developer.vonage.com/en/blog/authors/james-seconde" rel="noopener noreferrer"&gt;James Seconde&lt;/a&gt; combines Laravel Livewire with Vonage Messages API to create a sleek, real-time messaging app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=K0mpmFMYO8A" rel="noopener noreferrer"&gt;Play an Audio File Into a Voice Call With PHP&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Curious how automated calls work for businesses? &lt;a href="https://developer.vonage.com/en/blog/authors/alexandra-williams" rel="noopener noreferrer"&gt;Alexandra Williams&lt;/a&gt; demonstrates how to send an automated voice call and play an audio file when the call is answered using Vonage PHP SDK.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/combine-google-ai-with-vonage-rcs-for-visual-forecasts" rel="noopener noreferrer"&gt;Send Visual Weather Forecasts With Vonage RCS and Google AI&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In this tutorial, &lt;a href="https://developer.vonage.com/en/blog/authors/amanda-cavallaro" rel="noopener noreferrer"&gt;Amanda Cavallaro&lt;/a&gt; builds a Node.js app that fetches the weather, generates a descriptive image with Google’s Imagen, creates a short summary using Gemini, and sends it all as a rich RCS card via Vonage Messages API. Create interactive, visually engaging weather updates for your users in just a few steps!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/detect-sim-swap-fraud-with-go-and-vonage" rel="noopener noreferrer"&gt;Detect SIM Swap Fraud With Go and Vonage&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;SMS-based 2FA can be vulnerable to SIM swap attacks, where fraudsters hijack your number to steal security codes. With Vonage Identity Insights API, you can detect SIM swaps in real time. &lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt;Benjamin Aronov&lt;/a&gt; shows how to integrate it with Go (Golang) to keep your users safe&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/getting-started-with-the-vonage-live-captions-api-in-node-js" rel="noopener noreferrer"&gt;Getting Started With the Vonage Live Captions API in Node.js&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Add live captions to your video for accessibility and better focus! &lt;a href="https://developer.vonage.com/en/blog/authors/dwanehemmings" rel="noopener noreferrer"&gt;Dwane Hemmings&lt;/a&gt; walks you through integrating Live Captions API, with support for multiple languages and a one-click GitHub sample.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/using-jwt-for-authentication-in-a-golang-application-dr" rel="noopener noreferrer"&gt;JWT Authentication in Go With Gin&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Learn how to build secure JWT authentication in Go with Gin using golang-jwt/jwt/v5. In this guide, &lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt;Benjamin Aronov&lt;/a&gt; covers access and refresh tokens, HttpOnly cookies, Redis-based revocation, and Vonage API integration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EVENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://live360events.com/home.aspx" rel="noopener noreferrer"&gt;Live!360&lt;/a&gt;&lt;/strong&gt; (Orlando, Nov. 18-19)&lt;/p&gt;

&lt;p&gt;We’re heading to Live! 360, the ultimate tech conference for devs, data pros, and IT leaders. Swing by our booth, grab some swag, and let’s connect!&lt;/p&gt;

</description>
      <category>vonagenews</category>
    </item>
    <item>
      <title>🚀New Identity Insights API + RCS Tutorials and Events</title>
      <dc:creator>Daniela Facchinetti</dc:creator>
      <pubDate>Fri, 26 Sep 2025 14:19:25 +0000</pubDate>
      <link>https://dev.to/vonagedev/vonage-developer-newsletter-sept-2025-new-identity-insights-api-rcs-tutorials-and-events-303d</link>
      <guid>https://dev.to/vonagedev/vonage-developer-newsletter-sept-2025-new-identity-insights-api-rcs-tutorials-and-events-303d</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;September brings a new API - &lt;strong&gt;Identity Insights&lt;/strong&gt; — plus major &lt;strong&gt;Video API improvements.&lt;/strong&gt; The &lt;strong&gt;Vonage Viewpoint Questionnaire&lt;/strong&gt; is ready for your feedback. You’ll also find fresh tutorials on &lt;strong&gt;RCS and SIM swap&lt;/strong&gt; fraud … not to mention the latest tech trends. And get ready for a busy events season. Circle the dates and come meet the team.&lt;/p&gt;

&lt;p&gt;Daniela (Developer Relations Content Manager @ Vonage)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SURVEY&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://wkf.ms/45VWSfI" rel="noopener noreferrer"&gt;Your Viewpoint Questionnaire&lt;/a&gt;&lt;/strong&gt; — Developer Community &lt;/p&gt;

&lt;p&gt;The Vonage Developer Community offers workspaces, channels, events, and activities to help developers connect and support one another. We’d love your feedback to improve the Developer Community.&lt;a href="https://wkf.ms/45VWSfI" rel="noopener noreferrer"&gt; Complete the questionnaire&lt;/a&gt; &lt;strong&gt;by November 30, 2025, *&lt;em&gt;to receive a *&lt;/em&gt;€10 Vonage coupon&lt;/strong&gt;. Limited to one entry per person. Open to Vonage Viewpoint User Group participants only.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RELEASES and ANNOUNCEMENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/identity-insights-api-now-in-beta" rel="noopener noreferrer"&gt;Identity Insights API Now in Beta&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;It’s time to access powerful mobile network features that simplify the understanding and manipulation of phone number data. Look at what’s possible and how to get started.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/vp9-svc-in-vonage-video-api-released-into-general-availability" rel="noopener noreferrer"&gt;VP9 SVC in Vonage Video API Released for General Availability&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;VP9 offers better video quality at lower bandwidths, making it ideal for bandwidth-constrained networks. SVC enables video streams to dynamically adapt to network conditions and device capabilities. This enables more efficient, resilient, and scalable video experiences.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/announcing-v2-31-0-of-the-vonage-video-api" rel="noopener noreferrer"&gt;Announcing v2.31.0 of Vonage Video API&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;The latest update introduces new features and enhancements to Vonage Video Client SDKs — which boost bandwidth management, session moderation, and telephony integration. All to help you build high-quality video apps faster and more reliably.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/now-receive-audio-with-the-vonage-video-api-audio-connector" rel="noopener noreferrer"&gt;Now Receive Audio With the Vonage Video API Audio Connector&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;You can now send audio back into your sessions just as easily as you receive it. This update simplifies integration with voice services — including OpenAI, voice-to-text tools, and agentic bots — all through a single WebSocket. See the release blog post and start using bi-directional audio today.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;TUTORIALS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/build-a-real-time-interactive-rcs-experience-with-node-js-and-vonage" rel="noopener noreferrer"&gt;Build a Real-Time Interactive RCS Experience With Node.js and Vonage&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt;Benjamin Aronov&lt;/a&gt; shows how to create interactive messaging experiences using suggested replies, rich cards, and carousels in a single seamless journey. Build richer, real-time conversations for sports, music, or any live event with Vonage Messages API.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="//developer.vonage.com/en/blog/prevent-sim-swap-fraud-in-python-with-the-identity-insights-api"&gt;Prevent SIM Swap Fraud in Python With Identity Insights API&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;SIM swap fraud is a growing mobile security threat, with attackers hijacking phone numbers and intercepting calls, texts, and 2FA codes.&lt;a href="https://developer.vonage.com/en/blog/authors/benjamin-aronov" rel="noopener noreferrer"&gt; Benjamin Aronov&lt;/a&gt; uses Vonage Identity Insights API in Python to detect potential SIM swaps and keep your users safe.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/how-vonage-uses-camara-apis-to-improve-developer-experience" rel="noopener noreferrer"&gt;How Vonage Uses CAMARA APIs to Improve Developer Experience&lt;/a&gt;&lt;span&gt; &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Vonage fully supports open standards like CAMARA to simplify access to network capabilities. Rather than standalone endpoints, we’ve embedded CAMARA APIs directly into our products to give developers more flexibility and a smoother experience.&lt;a href="https://developer.vonage.com/en/blog/authors/alvaro-navarro" rel="noopener noreferrer"&gt; Alvaro Navarro&lt;/a&gt; offers real examples of how this approach enhances Vonage APIs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://developer.vonage.com/en/blog/man-in-the-loop-vs-llm-in-the-loop" rel="noopener noreferrer"&gt;Man in the Loop vs. LLM in the Loop&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Vonage AI is rethinking speech-to-text benchmarking by combining human oversight with automation. The teams use large language models (LLMs) to generate consensus transcriptions from multiple STT outputs — which then enable scalable, unbiased, and context-aware evaluation.&lt;a href="https://developer.vonage.com/en/blog/authors/yotam-luz" rel="noopener noreferrer"&gt;Yotam Luz&lt;/a&gt; compares this approach with traditional methods and the key insights from our experiments.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://youtu.be/fGihAo1NpMw" rel="noopener noreferrer"&gt;Send an SMS Message With PHP&lt;/a&gt;&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.vonage.com/en/blog/authors/alexandra-williams" rel="noopener noreferrer"&gt;Alexandra Williams&lt;/a&gt; offers a step-by-step tutorial using the Vonage PHP SDK. This includes everything you need to quickly begin … such as setting up, writing your script, and creating a POST route.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EVENTS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://devfest.gdgnantes.com/en" rel="noopener noreferrer"&gt;Devfest Nantes&lt;/a&gt;&lt;/strong&gt;(Nantes, Oct. 16 to 17)&lt;br&gt;
The Vonage booth is where you’ll experience spellbinding live demos, gather mystical swag, and immerse yourself in the wonders of our APIs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.apiaddicts.org/apiaddictsdays/" rel="noopener noreferrer"&gt;APIAddictsDays25&lt;/a&gt;&lt;/strong&gt; (Madrid, Oct. 22) [25SEP_DEV-NEWS_IMGS_API-DAYS]&lt;/p&gt;

&lt;p&gt;The largest API event in Spanish discusses security, design, architecture, business models, and the latest API developments. Say hello at the Vonage booth and don’t miss Alvaro Navarro and his talk:&lt;a href="https://www.apiaddicts.org/apiaddictsdays/agenda/" rel="noopener noreferrer"&gt;Cómo evitar el derrumbe: diseña tus APIs antes de poner el primer ladrillo&lt;/a&gt; at 1:15 pm.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://2025.allthingsopen.org/" rel="noopener noreferrer"&gt;All Things Open (ATO)&lt;/a&gt;&lt;/strong&gt;(Raleigh, Oct. 12 to 14) &lt;br&gt;
ATO is the largest open-source and technology conference in the eastern United States. Stop by the Vonage booth and meet the team.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://longhornphp.com/" rel="noopener noreferrer"&gt;Longhorn PHP&lt;/a&gt;&lt;/strong&gt; (Austin, Oct. 23 to 25) &lt;br&gt;
The conference helps PHP developers improve their skills, learn about modern PHP development, and connect with the wider PHP community. Be sure to visit the Vonage booth and don’t miss &lt;a href="https://developer.vonage.com/de/blog/authors/chuck-reeves" rel="noopener noreferrer"&gt;Chuck Reeves&lt;/a&gt;’s talk “&lt;a href="https://longhornphp.com/sessions#php-security-mechanisms-you-arent-using" rel="noopener noreferrer"&gt;PHP Security Mechanisms You Aren't Using&lt;/a&gt;”.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/watch?v=JZ7ztYVRXIM" rel="noopener noreferrer"&gt;Vonage CodeConnect Webinar — Stopping Fraud Before It Happens: Smarter Security for Banking&lt;/a&gt;&lt;/strong&gt; (Online, Oct. 30) &lt;/p&gt;

&lt;p&gt;Fraud is on the rise — from account takeovers to SIM swaps — and traditional authentication can’t keep up. Join our webinar to see how Vonage Verify and Identity Insights APIs help fintechs and banks stay a step ahead with stronger security.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.youtube.com/@VonageDev" rel="noopener noreferrer"&gt;Vonage CodeConnect Webinar Replays (online)&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Missed the Vonage CodeConnect webinars? Enjoy the replays:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://youtu.be/dxP-30_LhVQ" rel="noopener noreferrer"&gt;Frictionless Security: Adding Silent Authentication to Your iOS Application&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=Y4Qzcqc2yKE" rel="noopener noreferrer"&gt;Real-Time Fan Experiences With RCS: Build Interactive Sports and Music Broadcasts in Node.js&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=xPUc8Df348A" rel="noopener noreferrer"&gt;Detect SIM Swap Fraud With Enterprise-Level Security Checks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://youtu.be/gX-UCcRtnq0" rel="noopener noreferrer"&gt;Build a Real-Time Live Stream Platform With Vonage APIs: Video Chat, Text Chat, Screen Share, and Rewards That Scale&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>vonagenews</category>
    </item>
  </channel>
</rss>
