smsmanager
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@smsmanagerSend an SMS to 420777123456 with 'Hello'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SmsManager MCP Server
MCP (Model Context Protocol) server for sending SMS messages via SmsManager.cz HTTP API. Built for use with Claude Code.
Tools
Tool | Description |
| Send an SMS to a phone number via SmsManager.cz |
send_sms parameters
Parameter | Required | Description |
| Yes | Recipient number with country code, no |
| Yes | SMS text, max 1000 characters |
| No | Delivery quality: |
Related MCP server: vonage-mcp-server
Setup
1. Install dependencies
cd smsmanager-mcp
npm install2. Get API key
Get your API key from SmsManager admin panel.
3. Add to Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"smsmanager": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/smsmanager-mcp/index.js"],
"env": {
"SMSMANAGER_API_KEY": "your_api_key_here"
}
}
}
}Or via CLI:
claude mcp add smsmanager -e SMSMANAGER_API_KEY=your_key -- node /absolute/path/to/smsmanager-mcp/index.jsUsage
Once configured, Claude can send SMS:
"Send an SMS to 420777123456 saying 'Meeting at 3pm tomorrow'"
API
Uses the SmsManager.cz HTTP API (https://http-api.smsmanager.cz/Send).
Phone number format
Include country code without +: 420777123456 (Czech Republic = 420).
License
MIT
Available Tools
1 toolsend_smsA
Send an SMS message to a phone number via SmsManager.cz. Phone numbers should include country code without + (e.g. 420777123456 for Czech). Max 1000 characters. Returns message_id for reference.
| Name | Required | Description | Default |
|---|---|---|---|
| gateway | No | Delivery quality: high (best, default), economy (cheaper), low (cheapest) | high |
| message | Yes | SMS message text, max 1000 characters | |
| phone_number | Yes | Recipient phone number with country code, no + prefix (e.g. 420777123456) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool sends a message and returns a message_id, and it mentions the max length. However, it does not mention side effects (e.g., costs), error conditions, delivery guarantees, or any permission requirements. For a write operation, this is a moderate level of transparency, but not comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short, with three sentences that each add value: purpose, format constraint, and return value. It is front-loaded with the primary action. It contains slight redundancy with the schema (max length and phone format), but it's still efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (3 params, no nested objects, no output schema). The description covers the essential behavior (send, return id), format constraints, and a concrete example. It lacks information on error handling or delivery implications, but for a straightforward send operation, this is adequate. No annotations exist to supplement, but the description covers the core needs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters. The description repeats the phone-number format and max length that are already in the schema, adding no new semantic value. It provides a concrete example (420777123456) that is also in the schema, so no additional compensation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action and resource: 'Send an SMS message to a phone number via SmsManager.cz.' It also mentions the return value (message_id), making the tool's purpose unambiguous. No sibling tools exist, so differentiation isn't required.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: it's for sending SMS messages, and it explicitly notes the phone number format and character limit. There are no alternatives listed, so no explicit exclusions are needed. It implicitly tells the agent when to use it, and the constraints are practical.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
send_sms
TDQS
With only one tool, there is no possibility of confusion or overlap. The single tool has a clear and specific purpose: sending an SMS.
The tool name 'send_sms' follows a clear verb_noun convention and matches its function. With only one tool, there are no inconsistencies to evaluate.
The server has only one tool, which feels thin for the scope implied by 'smsmanager'. A typical SMS manager would reasonably include more than just sending, such as checking message status or account balance.
The tool surface is severely limited to sending SMS. Missing capabilities like viewing sent messages, checking delivery status, or managing contacts leave obvious gaps for an SMS management server.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
The Mobile Text Alerts SMS MCP server enables your AI to send SMS messages & manage contacts
Hosted MCP server for the Wavix telecom platform: SMS, voice, 2FA, SIP, numbers, 10DLC, CDRs.
Official EZTexting MCP server: SMS/MMS messaging, contacts, workflows, reports.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for Ileti Merkezi SMS API (Turkey). Enables sending SMS, bulk SMS, checking delivery reports, and managing contacts and blacklists via API Key + Hash authentication.8301MIT
- AlicenseNot gradedqualityAmaintenanceMCP server that provides SMS sending, CSV bulk SMS, and voice calling capabilities via the Vonage API.Apache 2.0
- AlicenseBqualityBmaintenanceMCP server for sending SMS via the SMSPM API. Send transactional SMS from Claude Desktop, Cursor, Windsurf, Cline, or any MCP client.148MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for sending SMS messages via Twilio and checking their delivery status through MCP tools.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/larsdittinger/smsmanager-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server