MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP server for Vendel SMS Gateway

创建于 3/21/2026
更新于 about 6 hours ago
Repository documentation and setup instructions

vendel-mcp

MCP server for Vendel SMS Gateway — send and receive SMS from Claude.

Exposes Vendel's SMS gateway as MCP tools, allowing Claude Desktop, Claude Code, and any MCP client to send messages, check quotas, manage templates, and schedule SMS.

Install

go install github.com/JimScope/vendel-mcp@latest

Setup

Claude Code

claude mcp add vendel -e VENDEL_URL=https://your-instance.com -e VENDEL_API_KEY=vk_your_key -- vendel-mcp

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "vendel": {
      "command": "vendel-mcp",
      "env": {
        "VENDEL_URL": "https://api.vendel.cc",
        "VENDEL_API_KEY": "vk_your_api_key"
      }
    }
  }
}

Configuration

| Variable | Required | Description | |----------|----------|-------------| | VENDEL_URL | Yes | Your Vendel instance URL (e.g. https://api.vendel.cc) | | VENDEL_API_KEY | Yes | Integration API key (starts with vk_) |

Tools

| Tool | Description | |------|-------------| | send_sms | Send an SMS to one or more phone numbers | | list_messages | List sent/received messages with filters | | get_message | Get details of a specific message | | check_quota | Check plan limits and current usage | | list_devices | List registered gateway devices | | list_templates | List available SMS templates | | send_template | Send an SMS using a saved template | | schedule_sms | Schedule an SMS for future delivery | | list_scheduled | List scheduled SMS messages |

Resources

| URI | Description | |-----|-------------| | vendel://quota | Current quota and plan limits as JSON |

Development

go build -o vendel-mcp .
VENDEL_URL=http://localhost:8090 VENDEL_API_KEY=vk_test ./vendel-mcp

License

MIT

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/JimScope/vendel-mcp
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "jimscope-vendel-mcp": { "command": "git", "args": [ "clone", "https://github.com/JimScope/vendel-mcp" ] } } }