Numvo
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., "@NumvoCheck if 202-555-0134 is a spam risk"
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.
Numvo
Phone number intelligence and spam-risk detection built with a reusable Python orchestration layer and MCP.
Architecture
Client / MCP Host
↓
MCP adapter
↓
Numvo service
↓
┌──────────────────────┐
│ PhoneNumbersProvider │ metadata / validity
│ FTCComplaintProvider │ complaint reputation
│ IPQSProvider │ fraud / abuse reputation
└──────────────────────┘
↓
Normalize → aggregate → cross-validate → score → explainRelated MCP server: Yunaq GAC MCP Server
What Numvo uses today
Phone metadata
phonenumbers provides number validity, region, carrier information when available, and number type. Metadata alone never makes a number spam.
FTC complaint reputation
Numvo can ingest the FTC Do Not Call complaint CSV data into a local SQLite index. Lookups are then performed by exact phone number without downloading complaint data during every request.
The FTC data is consumer-submitted complaint evidence. Numvo treats it as a signal, not absolute proof that a number is malicious.
IPQS reputation
If IPQS_API_KEY is configured, Numvo queries IPQualityScore for an independent reputation signal including fraud score, recent abuse, risky/spammer flags, and selected phone attributes.
Set the key before starting the MCP server:
export IPQS_API_KEY="your-key"
# Windows PowerShell:
# $env:IPQS_API_KEY="your-key"The key is read from the environment and should not be committed to the repository.
Spam scoring
FTC complaint scoring considers:
total complaint count
complaints in the last 30 and 90 days
robocall ratio
whether complaints span multiple dates
IPQS contributes its fraud score plus risky, spammer, and recent-abuse signals.
When two independent reputation providers both produce strong evidence, Numvo applies an agreement boost. This makes multi-source confirmation stronger than a single provider result.
Risk labels are:
0-24 LOW
25-49 SUSPICIOUS
50-74 HIGH
75-100 VERY_HIGHConfidence and explanations
Every Numvo result separates risk from confidence.
spam_scoreanswers: how suspicious does the available evidence look?confidence_scoreanswers: how much independent reputation evidence supports that conclusion?
Confidence labels are:
0-19 VERY_LOW
20-49 LOW
50-79 MEDIUM
80-100 HIGHThe result also includes human-readable reasons, for example:
FTC complaint history: 31 reports
12 FTC complaints in the last 30 days
84% of FTC reports were robocall-related
IPQS fraud score: 94/100
IPQS identifies the number as a spammer
IPQS reports recent abuse activity
Two independent reputation sources show strong risk signalsThis is intentionally explainable: a high risk score with very low confidence should be treated differently from a high risk score confirmed by multiple independent sources.
Development
python -m venv .venv
source .venv/bin/activate # Windows: .venv\\Scripts\\activate
pip install -e ".[dev]"
pytestAutomatic FTC refresh
Numvo can now check recent FTC daily complaint files automatically and ingest any published rows into the local SQLite index.
Refresh the most recent 7 calendar days:
python scripts/refresh_ftc.pyOr choose a wider window:
python scripts/refresh_ftc.py --days 30Numvo checks each date in the requested window. If the FTC has no file for a date, such as a weekend or non-published day, it records not_published and continues.
Downloaded files are cached under:
data/ftc_daily/The SQLite index is stored at:
data/ftc_complaints.sqlite3The refresh is safe to rerun: downloaded CSVs are reused and INSERT OR IGNORE prevents identical complaint rows from being duplicated.
You can still ingest a local FTC CSV manually:
python scripts/ingest_ftc_csv.py path/to/complaints.csvMCP tools
The server exposes:
check_phone_number(phone_number)
normalize_number(phone_number)check_phone_number() combines phone metadata, locally indexed FTC complaint evidence, and IPQS reputation when configured, then returns risk, confidence, reasons, and raw provider signals.
Status
Early development. Numvo now supports multi-source spam-risk cross-validation, explicit evidence confidence, human-readable explanations, and automatic FTC complaint-data refresh.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Score an IP, email, phone, domain or device for fraud in one call, with the signals behind it.
Read-only phone intelligence for AI voice agents — line type, risk, DNC, signed receipts.
AI-powered scam and threat verification for phone numbers, URLs, texts, and emails.
Phone carrier lookup, append, verification, DNC, and fraud data services.
Related MCP Servers
- AlicenseAqualityFmaintenanceAI-powered threat verification across 6 channels: phone numbers, URLs, text messages, emails, documents, and QR codes. Analyzes threats against 10M+ intelligence records from FTC, FCC, URLhaus, ThreatFox, and community reports, returning risk scores, verdicts, and detailed signals.101MIT
- AlicenseNot gradedqualityDmaintenanceProvides comprehensive IP and domain security intelligence, enabling analysis of IP addresses and domains for threat and reputation information.MIT
- AlicenseAqualityBmaintenanceProvides North American (NANP) area code and phone number intelligence for AI agents, including area code lookup, phone validation, carrier info, city/state coverage, local time, and scam context.858MIT

Numbers Onlineofficial
AlicenseNot gradedqualityCmaintenanceProvides phone intelligence for AI voice agents, enabling inbound caller identification, outbound risk assessment, line type detection, and do-not-contact checks via four read-only MCP tools.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/karthik1029/Numvo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server