{"name":"io.github.brntech/myotp","slug":"brntech-myotp","title":"MyOTP.App","description":"Send and verify one-time passcodes over SMS, WhatsApp and Telegram.","url":"https://mcp.market/server/brntech-myotp","rating":null,"grade":"A","score":92,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":34,"stars":1,"forks":0,"downloads_week":44,"last_push_at":"2026-09-07T15:51:48.000Z","license":"MIT"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-20T22:05:56.679Z","last_ok_at":"2026-09-20T22:05:56.679Z","latency_ms":675},"claimed":false,"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/brntech/myotp-agentkit","website":"https://mcp.myotp.app","version":"0.1.12","remotes":[{"type":"streamable-http","url":"https://mcp.myotp.app/mcp","headers":[{"description":"MyOTP.App API key, sent per request so the hosted server never stores it. Note: calls reach the MyOTP API from 108.61.176.199, so add that IP to your key's allowlist or every call returns 403.","isRequired":true,"isSecret":true,"name":"X-API-Key"}]}],"packages":[{"registryType":"npm","registryBaseUrl":"https://registry.npmjs.org","identifier":"@myotp/mcp","version":"0.1.12","transport":{"type":"stdio"},"environmentVariables":[{"description":"MyOTP.App API key. Get one free at https://myotp.app/sign-up/ (15 trial credits, no card).","isRequired":true,"isSecret":true,"name":"MYOTP_API_KEY"}]}],"tools":[{"name":"check_otp_status","description":"Check whether a previously sent OTP is still active and (with DLR_ACCESS entitlement on Enterprise plan) get its delivery status. Returns `is_active` (bool) and `expires_at` (ISO timestamp) on every plan. On Enterprise plans, also returns `DLR` (one of 'delivered', 'sent', 'read', 'failed', 'pending'). Useful when an end user reports they didn't receive the code — you can confirm whether MyOTP delivered it before deciding to resend. Does NOT verify a code; use `verify_otp` for that.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"message_id":{"type":"string","format":"uuid","description":"The UUID returned by `generate_otp` — this identifies which OTP you want a status report on."}},"required":["message_id"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"create_account","description":"Create a MyOTP.App agent account and return its one-time API key. No API key is required for this tool. The new account starts with zero balance; USDC top-ups work immediately, while card top-ups unlock after a human confirms the email address.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"email":{"type":"string","format":"email","description":"Email address for the new MyOTP.App account."},"name":{"type":"string","maxLength":64,"description":"Optional account, company, or product name (maximum 64 characters)."}},"required":["email"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"extend_otp","description":"Extend the expiry time of an active OTP without sending a new one. Useful when the end user is taking longer than expected to enter the code (e.g., switched apps, dealing with carrier delivery delay). Adds `duration` seconds (60-14400) to the current `expires_at`. Requires the EXTEND_OTP entitlement (Business or Enterprise plan). Some destination countries don't allow extensions — the API will return 403 in that case. Cheaper and less spammy than calling `generate_otp` again.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"message_id":{"type":"string","format":"uuid","description":"The UUID returned by `generate_otp` — identifies the OTP you want to extend."},"duration":{"type":"integer","minimum":60,"maximum":14400,"description":"Additional seconds to add to the OTP's expiry. Range 60-14400 (1 minute to 4 hours). The new expiry will be the current expiry + this duration."}},"required":["message_id","duration"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"generate_otp","description":"Send a one-time password (OTP) to a phone number via SMS, WhatsApp, or Telegram. MyOTP.App generates the code, formats the message, picks the best carrier route, and delivers it. Returns a `message_id` (UUID) — keep it; you'll pass it to `verify_otp`, `check_otp_status`, or `extend_otp` later. Each call deducts credits from the account balance; the per-message cost varies by destination country and channel and is returned in the `cost` field. Use this whenever an app needs to verify someone's phone — signup, login 2FA, password reset, transaction confirmation, etc.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"phone_number":{"type":"string","minLength":7,"maxLength":15,"pattern":"^[1-9]\\d{6,14}$","description":"Destination phone number in international format with NO leading + or 0. Must be 7-15 digits and start with a non-zero digit. Example: '14155551234' for a US number, '447911123456' for a UK number."},"channel":{"type":"string","enum":["sms","whatsapp","telegram"],"description":"Delivery channel. 'sms' (default) works in 190+ countries. 'whatsapp' is best for India/Brazil/Indonesia/Mexico/Nigeria/Turkey. 'telegram' is best for privacy-focused users. Same API for all three."},"otp_length":{"type":"integer","minimum":3,"maximum":8,"description":"Number of digits in the auto-generated OTP. Range 3-8 (4-8 for telegram). Default 6. Requires CUSTOM_OTP_LENGTH entitlement (Business plan or above)."},"otp_code":{"type":"string","pattern":"^\\d{3,8}$","description":"Provide your own pre-generated numeric OTP code (3-8 digits, 4-8 for telegram) instead of letting MyOTP generate one. Useful when you already have a code from another system."},"otp_validity":{"type":"integer","minimum":30,"maximum":14400,"description":"How long the OTP stays valid, in seconds. Range 30-14400 (30-3600 for telegram). Default 300 (5 minutes). Requires CUSTOM_OTP_EXPIRY entitlement (Business plan or above)."},"brand":{"type":"string","minLength":3,"maxLength":16,"pattern":"^[a-zA-Z0-9.]+$","description":"Sender brand name shown to the recipient (3-16 alphanumeric characters plus dots). Defaults to the brand registered against the API key, or 'MyOTP.App' if none."},"return_otp":{"type":"boolean","description":"If true, the API response will include the generated OTP code in plain text. Useful for testing or when you want to deliver the OTP via your own channel. Defaults to false. SECURITY: never enable this in production user flows."},"force_send":{"type":"boolean","description":"If true, send a new OTP even if one is already active for this phone number. By default the API returns 409 in that case. Use sparingly — repeated sends to the same number can hit carrier-level spam filters."},"template_order":{"type":"integer","minimum":1,"maximum":99,"description":"Pick a specific message template by its order number (1-99). Requires ACCESS_TO_TEMPLATES entitlement. Not supported on telegram (Telegram generates its own message text)."}},"required":["phone_number"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_account_info","description":"Return account details for the API key in use. Always returns at least the account `email`; depending on plan and platform version may also return balance/credit/plan info. Use this as a sanity check when wiring up MyOTP for the first time — if this call succeeds, your API key and IP whitelist are configured correctly.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_account_status","description":"Return email verification, balance, plan, and status for the configured MyOTP agent account. Set resend_verification to request another confirmation email first. Unverified accounts can top up with USDC, but cards stay locked.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"resend_verification":{"type":"boolean","description":"Send another confirmation email before returning account status."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_topup_quote","description":"Get the live price and payment options for buying MyOTP credits, without making a purchase. Use this when generate_otp or another send fails with HTTP 403 insufficient balance / NoBalance, or before calling `top_up_credits` to show the cost. Returns USDC and card client commands and never exposes the configured API key.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"credits":{"type":"integer","minimum":25,"maximum":50000,"default":100,"description":"Number of credits to quote. Integer from 25 to 50,000; defaults to 100."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_usage_report","description":"Fetch a paginated list of OTP transactions for a date range. Each transaction includes message_id, timestamp, phone_number, channel, country, cost, status, and the originating client IP. Date range cannot exceed 31 days. Defaults: last 7 days, page 1, 10 per page. Requires the API_REPORTING entitlement (Business or Enterprise plan). Use this to: audit recent activity, build internal dashboards, reconcile billing, or debug delivery issues across many recipients.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"start_date":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$","description":"Start date in YYYY-MM-DD format (UTC). If omitted, defaults to 7 days before today. The range start_date..end_date cannot exceed 31 days."},"end_date":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$","description":"End date in YYYY-MM-DD format (UTC). If omitted, defaults to today. The range start_date..end_date cannot exceed 31 days."},"page":{"type":"integer","minimum":1,"description":"Page number for paginated results, starting at 1. Default 1."},"per_page":{"type":"integer","minimum":1,"maximum":100,"description":"Results per page, 1-100. Default 10."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"top_up_credits","description":"Prepare or complete an autonomous MyOTP credit purchase with USDC or card through Machine Payments Protocol (MPP). Use this when generate_otp or another send fails with HTTP 403 insufficient balance / NoBalance. The tool quotes first, then returns a structured 402 challenge and exact retry details for the agent's own MPP client; if fetch is already wrapped by a credential-carrying MPP runtime, it returns the credited response directly.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"credits":{"type":"integer","minimum":25,"maximum":50000,"description":"Number of credits to buy. Integer from 25 to 50,000."},"dry_run":{"type":"boolean","description":"If true, return only the quote and explanation without requesting a payment challenge."}},"required":["credits"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"verify_otp","description":"Verify a code submitted by an end user against the OTP MyOTP delivered. Returns `{status: 'success'}` if the code matches and the OTP hasn't expired — at that point the OTP is consumed and cannot be reused. Returns `{status: 'failed', reason: 'invalid' | 'expired' | 'not found'}` otherwise. You MUST pass either `phone_number` or `message_id` to identify which OTP you're verifying against. Call this after collecting the code from the user (login form, signup screen, etc.).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"otp":{"type":"string","pattern":"^\\d{3,8}$","description":"The OTP code the end user typed in (3-8 numeric digits). This is the code you're trying to verify against what was sent."},"phone_number":{"type":"string","pattern":"^[1-9]\\d{6,14}$","description":"Phone number the OTP was originally sent to, in international format without + or leading 0. Provide either this OR `message_id` — `message_id` is more precise."},"message_id":{"type":"string","format":"uuid","description":"The UUID returned by `generate_otp`. Provide either this OR `phone_number`. Prefer this when you have it — it disambiguates if the same number got multiple OTPs."}},"required":["otp"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":92,"grade":"A","scanned_at":"2026-09-20T11:40:06.515Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T11:40:06.464Z","components":{"code":{"score":25,"max":25,"notes":["35 source files scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1949ms"]},"poisoning":{"score":15,"max":15,"notes":["10 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":15,"max":15,"notes":["last push 13 days ago"]},"identity":{"score":9,"max":10,"notes":["registry namespace matches repository owner","GitHub account older than a year"]}},"findings":[],"inputs":{"probes":[{"url":"https://mcp.myotp.app/mcp","reachable":true,"authRequired":false,"latencyMs":1949,"serverInfo":{"name":"myotp-mcp","version":"0.1.12"}}],"packages":[{"registryType":"npm","identifier":"@myotp/mcp","version":"0.1.12","found":true,"license":"MIT","hasInstallScripts":false,"dependencyCount":3,"publishedAt":"2026-09-04T21:39:17.580Z","repositoryUrl":"git+https://github.com/brntech/myotp-agentkit.git","weeklyDownloads":44}],"repo":{"found":true,"owner":"brntech","repo":"myotp-agentkit","archived":false,"pushedAt":"2026-09-07T15:51:48Z","stars":1,"forks":0,"openIssues":0,"ownerType":"Organization","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/205326665?v=4","ownerCreatedAt":"2025-03-28T14:12:52Z","license":"MIT"},"icon":{"url":"https://avatars.githubusercontent.com/u/205326665?v=4&s=128","source":"github"},"presence":{"stars":1,"forks":0,"downloadsWeek":44,"license":"MIT","lastPushAt":"2026-09-07T15:51:48.000Z","score":34}}}},"grade_history":[],"reviews":[]}