Skip to main content
Glama
larsdittinger

smsmanager

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_sms

Send an SMS to a phone number via SmsManager.cz

send_sms parameters

Parameter

Required

Description

phone_number

Yes

Recipient number with country code, no + (e.g. 420777123456)

message

Yes

SMS text, max 1000 characters

gateway

No

Delivery quality: high (default), economy, low

Related MCP server: vonage-mcp-server

Setup

1. Install dependencies

cd smsmanager-mcp
npm install

2. 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.js

Usage

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).

Full API documentation

Phone number format

Include country code without +: 420777123456 (Czech Republic = 420).

License

MIT

Available Tools

1 tool
send_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
gatewayNoDelivery quality: high (best, default), economy (cheaper), low (cheapest)high
messageYesSMS message text, max 1000 characters
phone_numberYesRecipient phone number with country code, no + prefix (e.g. 420777123456)

TDQS

A3.9/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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. 1 tool updatev1.0.0
    • First observedsend_sms

TDQS

A3.8/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap. The single tool has a clear and specific purpose: sending an SMS.

Naming Consistency5/5

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.

Tool Count2/5

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.

Completeness2/5

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

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    MCP 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.
    8
    30
    1
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    MCP server for sending SMS via the SMSPM API. Send transactional SMS from Claude Desktop, Cursor, Windsurf, Cline, or any MCP client.
    1
    48
    MIT

Latest Blog Posts

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