Beta · live in production · Part of ManyMoney AI

एक MCP. हर चैनल. अनगिनत possibilities.

Push, email, SMS, WhatsApp, Telegram, LINE, Kakao — हर वो चैनल जो आपके agent को चाहिए, एक tool call के पीछे। आप जो भी बना रहे हों, अब आपका agent असली दुनिया में users तक पहुंच सकता है।

अपने client config में जोड़ें
{
"mcpServers": {
"manymoney": {
"url": "https://messaging-api.svc-nue.pushwoosh.com/mcp",
"headers": {
"Authorization": "Token YOUR_API_TOKEN"
}
}
}
}

अपना client restart करें। अब आपका agent messages भेज सकता है।

हर वो चैनल जो आपके users असल में इस्तेमाल करते हैं

एक tool call. एक protocol. हर platform की native quirks under the hood संभाली गईं। भारत Android-first है — FCM, Huawei, Baidu और Amazon Fire सब एक ही call से।

Push — Android

FCM · Huawei · Baidu · Amazon Fire

Push — iOS

Standard · silent · critical · VoIP · Live Activities

Web Push

Chrome · Firefox · Safari · Edge

Email

HTML · templates · attachments · custom From

SMS

configured carrier के ज़रिए global delivery

WhatsApp

Free-form + Meta-approved templates

Telegram

content variables के साथ text messages

LINE & Kakao

Content और template messages

सादी भाषा अंदर. असली deliveries बाहर.

आपका agent natural-language intent को structured tool calls में बदलता है — ManyMoney MCP delivery, scheduling, frequency capping और बाकी boring हिस्से संभालता है।

ऐप XXXXX-XXXXX के cart-abandonment segment को push भेजो, title “अभी सोच रहे हैं?” और body “आपका cart इंतज़ार कर रहा है — 10% off.” हर user के local time के हिसाब से दोपहर 3 बजे schedule करो।

Notify({
application: "XXXXX-XXXXX",
target: { segment: "cart-abandonment" },
platforms: ["ios", "android"],
message_payload: {
title: "अभी सोच रहे हैं?",
body: "आपका cart इंतज़ार कर रहा है — 10% off."
},
schedule: { at: "15:00", timezone: "user" }
})
// → PW-12345-67890

user uid-123 को template welcome-flow-v2 से transactional email भेजो, first_name “Aarav” set करके।

Notify({
platforms: ["email"],
target: { users: ["uid-123"] },
message_payload: { template: "welcome-flow-v2" },
placeholders: { first_name: "Aarav" }
})
// → PW-12345-67891

इन 10 user IDs को इस list के individual promo codes के साथ SMS भेजो। message body के लिए user की locale इस्तेमाल करो, और सभी sends को campaign diwali-sale से attach करो।

NotifyBulk([
{ target: { users: ["uid-001"] }, platforms: ["sms"],
placeholders: { code: "FIRE-7C2A" }, campaign: "diwali-sale" },
{ target: { users: ["uid-002"] }, platforms: ["sms"],
placeholders: { code: "FIRE-9B11" }, campaign: "diwali-sale" },
// ... 8 more
])
// → [ PW-…, PW-…, PW-… ] · 10 codes returned

तीन lines का config. अपना client चुनें.

Auth आपके Pushwoosh API token से होता है। इसे specific apps तक scope करें।

claude_desktop_config.json
{
"mcpServers": {
"manymoney": {
"url": "https://messaging-api.svc-nue.pushwoosh.com/mcp",
"headers": {
"Authorization": "Token YOUR_API_TOKEN"
}
}
}
}
~/.cursor/mcp.json
{
"mcpServers": {
"manymoney": {
"url": "https://messaging-api.svc-nue.pushwoosh.com/mcp",
"headers": {
"Authorization": "Token YOUR_API_TOKEN"
}
}
}
}
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"manymoney": {
"url": "https://messaging-api.svc-nue.pushwoosh.com/mcp",
"headers": {
"Authorization": "Token YOUR_API_TOKEN"
}
}
}
}

कोई भी MCP-compatible client यही shape लेता है: HTTP transport, ऊपर वाला URL, और एक Token header. Cline, Continue, ChatGPT Desktop और custom MCP agents के साथ काम करता है।

URL: https://messaging-api.svc-nue.pushwoosh.com/mcp
Authorization: Token YOUR_API_TOKEN

Scoped tokens

हर API token को specific apps और channels तक सीमित करें।

Test devices flag

broadcast से पहले controlled allowlist पर sends preview करें।

Idempotent

failure पर retry safe है — कोई duplicate sends नहीं।

दो tools. यही पूरा API है.

agent-readable के लिए बना है, human-clickable के लिए नहीं। Predictable parameter shapes. Structured errors. ऐसे message codes लौटाता है जिन्हें आप track कर सकते हैं।

Notify — single message

एक call एक message भेजती है — segment broadcast हो या transactional, कोई भी channel।

Parameterकाम
applicationXXXXX-XXXXX form में App code
platforms["ios","android","email","sms",…]
targetSegment, filter, या explicit user/hwid list
message_payloadTitle, body, template, या rich content
scheduleSend-now, delay, या per-user timezone
placeholdersTemplate variables के लिए values
campaignattribution के लिए optional campaign code
frequency_cappingper-user message limits का ध्यान रखे

NotifyBulk — batched sends

एक call कई messages भेजती है, per-recipient variation के साथ। order में message codes का array लौटाती है।

NotifyBulk([
{
target: { users: ["uid-001"] },
platforms: ["sms"],
message_payload: { body: "Code: {{code}}" },
placeholders: { code: "FIRE-7C2A" }
},
{
target: { users: ["uid-002"] },
platforms: ["sms"],
message_payload: { body: "Code: {{code}}" },
placeholders: { code: "FIRE-9B11" }
}
])
// → [ "PW-12345-67890", "PW-12345-67891" ]

दो tools. अनगिनत agents जो आप बना सकते हैं.

ManyMoney MCP कोई marketing tool नहीं है। यह एक substrate है। एक बार आपका agent users तक पहुंच जाए, तो वो और क्या बन सकता है? भारत के Android-first इकोसिस्टम के लिए सोचें — UPI fintech, e-commerce और EdTech से लेकर।

UPI पेमेंट agents

हर transaction पर तुरंत push या SMS alert भेजें।

E-commerce agents

Big Billion Days और Diwali sale पर cart recovery push।

EdTech tutor bots

course reminder और live class alerts WhatsApp व push पर।

Trading agents

threshold पार होते ही आपको text करें।

Healthcare adherence bots

SMS और push पर HIPAA-clean nudges।

Customer-success agents

जब तक इंसान जवाब न दे, channels पर escalate करें।

Game companions

raid timer चलते ही WhatsApp updates भेजें।

DevOps agents

WhatsApp groups में incident threads खोलें।

अपने agent से सिर्फ भेजने नहीं, बल्कि campaigns plan करवाना, segments manage करवाना या performance analyze करवाना चाहते हैं? देखें ManyMoney MCP general endpoint.

Production substrate. कोई side-project नहीं.

Audited delivery infrastructure जो 14+ साल से production में है — उसी scale के लिए बना जिस पर भारत के सबसे बड़े Android ऐप्स चलते हैं। 1,000 MAU तक free शुरू करें, कोई add-on नहीं, कोई per-call fee नहीं — ManyMoney MCP हर Pushwoosh plan में शामिल है। SOC 2 Type I और ISO 27001:2022 certified, GDPR व HIPAA compliant — एंटरप्राइज़-ग्रेड trust, हर plan में।

ISO 27001:2022 Certified

ISO 27001:2022

Pushwoosh ऑनलाइन सुरक्षा के उद्योग मानकों को पूरा करता है और ISO 27001:2022 द्वारा प्रमाणित है।

GDPR Compliant

GDPR अनुपालन सुनिश्चित करना

हम डेटा सुरक्षा नियमों के अनुपालन के उच्चतम मानकों को बनाए रखते हैं।

OWASP Compliant

OWASP सिद्धांतों का पालन

हमारा प्लेटफ़ॉर्म संभावित खतरों को रोकने के लिए Security by Design दृष्टिकोण अपनाता है।

HIPAA Compliant

HIPAA

Pushwoosh HIPAA अनुरूप है, जो PHI(ePHI) की गोपनीयता, अखंडता और उपलब्धता सुनिश्चित करता है।

SOC 2 Certified

SOC 2 Type 1

Pushwoosh के पास SOC 2 Type 1 रिपोर्ट है, जो उपयोगकर्ता डेटा की सर्वोच्च सुरक्षा सुनिश्चित करने की हमारी प्रतिबद्धता को दर्शाती है।

Data Privacy Framework

DPF प्रमाणित

Pushwoosh आधिकारिक रूप से EU-U.S. डेटा प्राइवेसी फ़्रेमवर्क (UK एक्सटेंशन सहित) और Swiss DPF के तहत प्रमाणित है।

आपका agent जानता है क्या कहना है. अब वो उसे deliver भी कर सकता है.