Smsmobile MCP Server for Vercel AI SDKGive Vercel AI SDK instant access to 26 tools to Check Whatsapp Number, Delete Gateway Mobile, Delete Sms, and more
The Vercel AI SDK is the TypeScript toolkit for building AI-powered applications. Connect Smsmobile through Vinkius and every tool is available as a typed function. ready for React Server Components, API routes, or any Node.js backend.
Ask AI about this MCP Server for Vercel AI SDK
The Smsmobile MCP Server for Vercel AI SDK is a standout in the Communication Messaging category — giving your AI agent 26 tools to work with, ready to go from day one.
Vinkius delivers Streamable HTTP and SSE to any MCP client
import { createMCPClient } from "@ai-sdk/mcp";
import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";
async function main() {
const mcpClient = await createMCPClient({
transport: {
type: "http",
// Your Vinkius token. get it at cloud.vinkius.com
url: "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
},
});
try {
const tools = await mcpClient.tools();
const { text } = await generateText({
model: openai("gpt-4o"),
tools,
prompt: "Using Smsmobile, list all available capabilities.",
});
console.log(text);
} finally {
await mcpClient.close();
}
}
main();
* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure
About Smsmobile MCP Server
Connect your Smsmobile account to any AI agent and turn your smartphone into a powerful communication gateway. Automate SMS and WhatsApp messaging directly through natural conversation.
The Vercel AI SDK gives every Smsmobile tool full TypeScript type inference, IDE autocomplete, and compile-time error checking. Connect 26 tools through Vinkius and stream results progressively to React, Svelte, or Vue components. works on Edge Functions, Cloudflare Workers, and any Node.js runtime.
What you can do
- SMS Messaging — Send new messages with
send_smsor resend failed ones usingresend_sms. - WhatsApp Integration — Dispatch WhatsApp messages from your own number using
send_whatsapp. - Inbox Management — Retrieve incoming texts with
get_received_smsand mark them as read viamark_sms_read. - Conversation History — Access full logs and grouped conversations using
get_sms_logsandlist_sms_conversations. - Device Control — Manage your connected mobile gateways and SIM ports with
list_gateway_mobiles.
The Smsmobile MCP Server exposes 26 tools through the Vinkius. Connect it to Vercel AI SDK in under two minutes — credentials fully managed, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.
All 26 Smsmobile tools available for Vercel AI SDK
When Vercel AI SDK connects to Smsmobile through Vinkius, your AI agent gets direct access to every tool listed below — spanning sms-gateway, whatsapp-api, mobile-automation, and more. Every call runs in a secure, isolated environment with full audit visibility. Beyond a simple connection, you get real-time monitoring of agent activity, enterprise governance, and optimized token usage.
Check whatsapp number on Smsmobile
Check if a number is registered on WhatsApp
Delete gateway mobile on Smsmobile
Delete a mobile from SMS Gateway
Delete sms on Smsmobile
Delete SMS messages from the server log
Get emails on Smsmobile
Retrieve emails
Get received sms on Smsmobile
Retrieve SMS messages received on the smartphone
Get sms logs on Smsmobile
Retrieve logs of SMS messages sent through the API
Get unsubscribed emails on Smsmobile
List unsubscribed email contacts
Get whatsapp messages on Smsmobile
Retrieve WhatsApp messages
List gateway mobiles on Smsmobile
Manage mobiles connected to your SMS Gateway
List incoming calls on Smsmobile
List incoming calls
List missed calls on Smsmobile
List missed calls
List mobile sent sms on Smsmobile
List SMS messages sent directly from the mobile device
List notifications on Smsmobile
List notifications
List outgoing calls on Smsmobile
List outgoing calls
List sms conversations on Smsmobile
Retrieve grouped conversations (incoming and outgoing)
Mark sms read on Smsmobile
Mark a received SMS as read in the API status
Resend sms on Smsmobile
Resend a previously unsent SMS (must be in error status)
Resend whatsapp on Smsmobile
Resend a WhatsApp message
Send email on Smsmobile
Send an email
Send notification on Smsmobile
Create a push notification for a target mobile device
Send sms on Smsmobile
Send an SMS from your mobile phone
Send whatsapp on Smsmobile
Send a WhatsApp message
Set whatsapp active on Smsmobile
Activate or deactivate WhatsApp feature
Sync whatsapp on Smsmobile
Synchronize WhatsApp messages (Required before retrieval)
Update gateway mobile on Smsmobile
Update mobile label in SMS Gateway
Update sms alias on Smsmobile
Update the alias of a received SMS
Connect Smsmobile to Vercel AI SDK via MCP
Follow these steps to wire Smsmobile into Vercel AI SDK. The entire setup takes under two minutes — your credentials stay safe behind Vinkius.
Install dependencies
npm install @ai-sdk/mcp ai @ai-sdk/openaiReplace the token
[YOUR_TOKEN_HERE] with your Vinkius tokenRun the script
agent.ts and run with npx tsx agent.tsExplore tools
Why Use Vercel AI SDK with the Smsmobile MCP Server
Vercel AI SDK provides unique advantages when paired with Smsmobile through the Model Context Protocol.
TypeScript-first: every MCP tool gets full type inference, IDE autocomplete, and compile-time error checking out of the box
Framework-agnostic core works with Next.js, Nuxt, SvelteKit, or any Node.js runtime. same Smsmobile integration everywhere
Built-in streaming UI primitives let you display Smsmobile tool results progressively in React, Svelte, or Vue components
Edge-compatible: the AI SDK runs on Vercel Edge Functions, Cloudflare Workers, and other edge runtimes for minimal latency
Smsmobile + Vercel AI SDK Use Cases
Practical scenarios where Vercel AI SDK combined with the Smsmobile MCP Server delivers measurable value.
AI-powered web apps: build dashboards that query Smsmobile in real-time and stream results to the UI with zero loading states
API backends: create serverless endpoints that orchestrate Smsmobile tools and return structured JSON responses to any frontend
Chatbots with tool use: embed Smsmobile capabilities into conversational interfaces with streaming responses and tool call visibility
Internal tools: build admin panels where team members interact with Smsmobile through natural language queries
Example Prompts for Smsmobile in Vercel AI SDK
Ready-to-use prompts you can give your Vercel AI SDK agent to start working with Smsmobile immediately.
"Send an SMS to +1234567890 saying 'Your appointment is confirmed for tomorrow at 10 AM'."
"Check for any unread SMS messages received in the last hour."
"Show me the logs for all SMS messages sent today that resulted in an error."
Troubleshooting Smsmobile MCP Server with Vercel AI SDK
Common issues when connecting Smsmobile to Vercel AI SDK through Vinkius, and how to resolve them.
createMCPClient is not a function
npm install @ai-sdk/mcpSmsmobile + Vercel AI SDK FAQ
Common questions about integrating Smsmobile MCP Server with Vercel AI SDK.
How does the Vercel AI SDK connect to MCP servers?
createMCPClient from @ai-sdk/mcp and pass the server URL. The SDK discovers all tools and provides typed TypeScript interfaces for each one.Can I use MCP tools in Edge Functions?
Does it support streaming tool results?
useChat and streamText that handle tool calls and display results progressively in the UI.Explore More MCP Servers
View all →
iQiyi Open Platform / 爱奇艺开放平台
8 toolsChina's leading video platform — retrieve user info, VIP status, and search content via AI.

Meshy (3D AI)
17 toolsTransform text and images into high-quality 3D models using Meshy's generative AI directly from your agent.

FastSpring
10 toolsManage digital commerce via FastSpring — track orders and subscriptions, handle accounts, and manage product catalogs directly from any AI agent.

Gravity Forms
12 toolsManage your WordPress Gravity Forms — list forms, retrieve entries, and handle submissions directly via AI.
