JetAPI MCP server
Send WhatsApp, Telegram, SMS and MAX messages, files and bulk mailings via JetAPI
0 stars455 downloads/wk
Reviews
Write oneNobody has reviewed JetAPI yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
JetAPI tools (10, 3 write)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
create_webhookwrite actionRegister a webhook URL to receive real-time notifications for specific JetAPI events (e.g. whatsapp_log_out, delivery status updates, incoming messages).
delete_webhookwrite actionDelete a webhook by ID. The webhook will stop receiving notifications.
get_accountGet full JetAPI account information including token, balance, dispatch routing, sender names, subscription status and Telegram/WhatsApp sessions count.
get_balanceGet JetAPI account balance, customer ID, available dispatch routing channels, and registered sender names.
get_delivery_statusGet the current status and full details of a specific message delivery by its ID. Returns status, operator info, phone, scheduled time, costs and more.
get_phone_infoLook up phone number information including country, mobile operator name and brand. Useful before sending to verify the number and determine routing.
get_utm_tagsGet list of all UTM tags (utm_marks) configured in the JetAPI account for tracking message dispatches.
get_webhookGet details of a specific webhook by its ID: the URL it posts to and the event types it subscribes to.
list_webhooksList all registered webhooks for this JetAPI account. Use it to see where events are delivered or to find a webhook ID before updating or deleting it.
update_webhookwrite actionUpdate an existing webhook — change its URL or the list of event types it subscribes to. Pass only what should change; types replaces the whole list.
Public scan report
scanner v0.1.5 · 2026-09-19 · same rubric, same numbers if you re-run it
- Code scan16 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitystatic API keys via environment variables6/15
- Maintenancelast push 5 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
What the publisher says
From the JetAPI repository's README, as published. We do not edit it. Read it on GitHub
JetAPI MCP Server
Official MCP server for JetAPI — send WhatsApp, Telegram, SMS and MAX messages, files and bulk mailings from AI agents like Claude, Cursor and VS Code.
Tools
Get a token
Sign up at jetapi.io and copy the API token from the dashboard. To send through WhatsApp or Telegram, connect the messenger in the dashboard first.
Installation
Claude Desktop — one click
- Download jetapi-mcp-server.mcpb from the latest release.
- Double-click it (or drag it into Claude Desktop → Settings → Extensions).
- Paste your JetAPI token when asked. It is stored securely by Claude Desktop.
Claude Desktop — config file
Requires Node.js 18.17 or newer. Open Settings → Developer → Edit Config (claudedesktopconfig.json) and add:
{
"mcpServers": {
"jetapi": {
"command": "npx",
"args": ["-y", "jetapi-mcp-server"],
"env": { "JETAPI_TOKEN": "your_token_here" }
}
}
}Restart Claude Desktop.
Claude Code
claude mcp add jetapi -- npx -y jetapi-mcp-serverThe server needs JETAPI_TOKEN, so pass it when adding:
claude mcp add jetapi --env JETAPI_TOKEN=your_token_here -- npx -y jetapi-mcp-serverCursor
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"jetapi": {
"command": "npx",
"args": ["-y", "jetapi-mcp-server"],
"env": { "JETAPI_TOKEN": "your_token_here" }
}
}
}VS Code
Add to .vscode/mcp.json — VS Code will prompt for the token and keep it out of the file:
{
"inputs": [
{ "type": "promptString", "id": "jetapi_token", "description": "JetAPI token", "password": true }
],
"servers": {
"jetapi": {
"type": "stdio",
"command": "npx",
"args": ["-y", "jetapi-mcp-server"],
"env": { "JETAPI_TOKEN": "${input:jetapi_token}" }
}
}
}MCP Registry
The server is listed in the official MCP Registry as io.github.jetapi/jetapi-mcp-server, so clients and catalogs that read the registry can install it directly.
Other MCP clients
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
Runs npx -y jetapi-mcp-server on your machine. Read the scan report first; the gateway never runs local packages.
claude mcp add jetapi-mcp-server -- npx -y jetapi-mcp-server
JetAPI: common questions
- Is JetAPI MCP server safe?
- Mostly: it is graded B (83/100). Read the JetAPI safety report
- How do I install JetAPI?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does JetAPI need an API key?
- Yes. The registry entry asks for
JETAPI_TOKEN. - Is JetAPI maintained?
- The last commit was 7 days ago (2026-09-14). The latest release is v1.0.2.