MNotify MCP Server
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., "@MNotify MCP ServerSend SMS 'Hello from AI' to +233501234567"
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.
MNotify MCP Server
Bring MNotify to your AI IDE in one command.
This package exposes the MNotify SMS API as an MCP server so tools like Cursor can securely call real MNotify actions (send SMS, manage contacts/groups/templates, delivery reports) via stdio. This repo also includes a simple interactive MNotify Agent for CLI use. It is based on Mnotify API v2.0
Check out the PyPI MCP package here
Requirements
Python 3.10+
Environment variable:
MNOTIFY_API_KEY
Setup
Using uv (recommended):
curl -LsSf https://astral.sh/uv/install.sh | sh # install uv if needed uv venv uv pip install -r requirements.txtUsing any virtualenv manager + pip:
python -m venv .venv && source .venv/bin/activate pip install -r requirements.txt
Quick start — install and run the MCP server
pip install mnotify_mcp_server
export MNOTIFY_API_KEY=sk_mnotify_...
# Start the server (preferred)
mnotify_mcp server
# Alternatives
mnotify-mcp
python -m mnotify_mcp.serverConnect to Cursor
Option A: Project config
.cursor/mcp.json(recommended)
{
"mcpServers": {
"mnotify": {
"command": "mnotify_mcp",
"args": ["server"]
}
}
}Relaunch cursor from the same environment as the virtual environment
Option B: Manual add in Cursor (Settings → MCP → Add Custom Server → Process)
Command:
mnotify_mcpArgs:
serverEnsure
MNOTIFY_API_KEYis set in the environment where Cursor launches the process
MNotify Agent (interactive CLI)
A local chat agent that can call all MNotify tools directly.

Setup
Create a virtual environment and install dependencies with uv or pip (see above).
Add a
.envfile with:
OPENROUTER_API_KEY=sk-or-v1-...
MNOTIFY_API_KEY=...
AGNO_API_KEY=ag-... # optional, if monitoring is set.Start the agent
uv run mnotify_agent.pyCLI commands
help: list commands
history: show recent messages
tools: list available tools
test: run a quick tool-call test
clear: clear conversation context
Tools exposed
SMS:
send_quick_bulk_sms,send_bulk_group_sms,update_scheduled_smsReports:
sms_delivery_report,specific_sms_delivery_report,periodic_sms_delivery_reportContacts:
add_contact,update_contact,delete_contact,get_contact_details,get_contact_list,get_group_contactsGroups:
add_group,update_group,delete_group,get_group_details,get_group_listTemplates:
get_template_list,get_message_template,add_message_template,update_message_template,delete_message_templateUtilities:
register_sender_id,check_sender_id,check_sms_balanceHelpers:
get_context_snapshot,resolve_group_name
Validation & guardrails
messagelength ≤ 460;sender_idlength ≤ 11.schedule=truerequiresschedule_time(YYYY-MM-DD HH:MM).Optional:
verify_sender=trueperforms a best‑effort sender status check before sending.
Security
Never pass secrets as tool arguments. The server reads
MNOTIFY_API_KEYfrom the environment.The server does not log secrets.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Nanayeb34/mnotify-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server