by sv-number
MCP server for AI agents that need a phone number: order a private number in 200+ countries, read the SMS verification code, hand it back. The widest country coverage in the category, and you can check it with one API call.
# Add to your Claude Code skills
git clone https://github.com/sv-number/mcp-serverLast scanned: 8/10/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-08-10T05:25:10.800Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}mcp-server is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by sv-number. MCP server for AI agents that need a phone number: order a private number in 200+ countries, read the SMS verification code, hand it back. The widest country coverage in the category, and you can check it with one API call. It has 561 GitHub stars.
Yes. mcp-server passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/sv-number/mcp-server" and add it to your Claude Code skills directory (see the Installation section above).
mcp-server is primarily written in JavaScript. It is open-source under sv-number on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh mcp-server against similar tools.
No comments yet. Be the first to share your thoughts!
Based on votes and bookmarks from developers who liked this skill
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Phone numbers as tools. Your agent orders a private number in the country a service expects, reads the SMS verification code straight from the API, and hands the number back. Nine tools over stdio, no SDK to learn.
200+ countries, the widest coverage in this category. Every other claim on this page is
checkable too, but this one takes a single call: run list_countries and count the rows.
order_number(service="tg", country=6) -> +62 838 1234 5678
wait_for_code(activationId) -> 123456
finish_activation(activationId) -> done
Claude Code:
claude mcp add sv-number --env SVN_API_KEY=your_key_here -- npx -y sv-number-mcp
Anything that reads a JSON config (Codex, Cursor, Claude Desktop):
{
"mcpServers": {
"sv-number": {
"command": "npx",
"args": ["-y", "sv-number-mcp"],
"env": { "SVN_API_KEY": "your_key_here" }
}
}
}
The key comes from your profile after signup. The balance has to be funded: there is no free tier on this API. The key is read from the environment and never leaves the process, no tool returns it and no error message quotes it.
| Tool | What it does |
|---|---|
get_balance |
what is left on the account |
list_countries |
every country with its id and operators |
list_services |
find the code for a site: search by name or domain, best match first, price, how many are online, and the share of codes that actually arrived |
order_number |
order a private number for one service in one country |
wait_for_code |
poll until the code lands and return it, already parsed out of the SMS |
finish_activation |
close a successful activation |
cancel_activation |
cancel and get the money back |
request_another_sms |
ask for one more code on the same number |
totp_code |
compute the authenticator code locally, by RFC 6238 |
list_services answers with matches ranked best first plus notInList, the fallback
service. It takes a site name or a URL, so discord.com finds Discord, and it ranks a
whole word above a substring so x puts X.com (Twitter) above Maxim. Codes are
arbitrary and must never be recalled from memory: uk is Airbnb, re is Coinbase, tn is
LinkedIn. When nothing matches, the answer says so and points at another country, because
the catalogue is not the same everywhere, and at ot ("Not on list"), which receives SMS
from any sender that is not in the list. A site that has its own code sends to that code,
so ot is a fallback and not a wildcard.
deliveredPercent is the delivery rate for that service and country, and null when the
pair has no statistics yet, which is the common case. Where there is a number, pick by it
instead of by price; where there is not, online shows how big the live pool is, which is
the next best signal.
Every call carries lang. The API answers without it, but then it prices in another
currency, so the server never leaves it out. Text markers that the API returns
instead of JSON are checked before anything is parsed, and turned into a sentence an agent
can act on: NO_NUMBERS becomes "change country, or set operator to any" rather than a
bare token. Polling runs at a sane interval instead of hammering getStatus, and
wait_for_code stops at the 20 minute life of a number.
Receiving verification codes is the whole job. These numbers do not send SMS, do not take calls, and are not meant for banking, payment or government accounts. An agent that needs a permanent number to hold a conversation wants a carrier product instead.
| Variable | Default |
|---|---|
SVN_API_KEY |
required |
SVN_API_BASE |
https://sms-verification-number.com/stubs/handler_api |
SVN_LANG |
en, sets both the language and the currency of the answers |
SVN_POLL_SECONDS |
4 |
MIT. The service behind it is commercial.