io.github.byteplant-dev/byteplant-mcp

平台与服务

by byteplant-dev

An MCP server that provides Email, Phone and Address Validation Services from Byteplant

什么是 io.github.byteplant-dev/byteplant-mcp

An MCP server that provides Email, Phone and Address Validation Services from Byteplant

README

<!-- mcp-name: io.github.byteplant-dev/byteplant-mcp -->

Byteplant Validator MCP Server

Email, Phone Number, and Address Validation for the Model Context Protocol (MCP)

This package provides an MCP server that uses Byteplant’s Email-Validator, Phone-Validator, and Address-Validator APIs to deliver real-time live validation in any MCP-compatible client.

Features

  • Email validation
  • Phone number validation
  • Postal address validation
  • Fast studio MCP server
  • Local execution
  • Easy integration with Claude Desktop

Requirements

MCP Configuration (Claude Desktop)

1. Installation

First, install the python module. You can use local installation (like venv) or global.

bash
pip install byteplant-mcp

2. Configuration

Next, add the MCP server to Claude configuration.

json
{
	"mcpServers": {
		"byteplant": {
			"command": "path/to/python/installation",
			"args": ["-m", "byteplant-mcp"],
			"env": {
				"EV_TOKEN": "<EMAIL VALIDATOR API TOKEN>",
				"PV_TOKEN": "<PHONE VALIDATOR API TOKEN>",
				"AV_TOKEN": "<ADDRESS VALIDATOR API TOKEN>"
			}
		}
	}
}	

Byteplant's Email, Phone, and Address Validation Tools

1. validate_email

Real-Time Email Validation API

The Email Validation API returns the deliverability status and detailed information for the email that is provided as input.


API Endpoint

ParameterValue
API URLhttps://api.email-validator.net/api/verify
MethodGET or POST

Example API Request (GET)

https://api.email-validator.net/api/verify?EmailAddress=support@byteplant.com&APIKey=your API key


Input Parameters

ParameterDescription
EmailAddressEmail address to validate (string).
APIKeyYour API key (string).
TimeoutTimeout in seconds (int). Default: 10 (min 5, max 300).

API Result (JSON)

ParameterDescription
statusAPI result code. 401, 118, 119 indicate API errors:<br>401 → Email address missing<br>118 → Rate Limit Exceeded<br>119 → API Key Invalid or Depleted
infoShort status description.
detailsFull status description.
freemailIndicates if email is from a freemail provider (true / false).
ratelimit_remainRemaining API requests before rate limit is reached (default: 100 requests / 300s).
ratelimit_secondsSeconds remaining in the current rate-limit interval.

2. validate_phone

Real-Time Phone Validation API

The Real-Time Phone Verification API validates a single phone number in real-time.
It returns the status (VALID_CONFIRMED, VALID_UNCONFIRMED, INVALID) as well as details such as line type, carrier/operator, and location.


API Endpoint

ParameterValue
API URLhttps://api.phone-validator.net/api/v2/verify
MethodGET or POST

Example API Request (GET)

https://api.phone-validator.net/api/v2/verify?PhoneNumber=09874-322466&CountryCode=de&APIKey=your API key


Input Parameters

ParameterDescription
PhoneNumberPhone number to validate (string, URL encoded). Accepts national format or international format with leading + (+%2B, space → %20).
CountryCodeTwo-letter ISO 3166-1 country code (string). Optional if number is in international format.
LocaleIETF language tag for geocoding (string). Optional; default: en-US.
ModeValidation mode (string): express (static checks) or extensive (full validation). Optional; default: extensive.
APIKeyYour API key (string).
TimeoutTimeout in seconds (int). Optional; default: 10 (min 5, max 300).

API Result (JSON)

ParameterDescription
statusVALID_CONFIRMED, VALID_UNCONFIRMED, INVALID, DELAYED, RATE_LIMIT_EXCEEDED, API_KEY_INVALID_OR_DEPLETED
linetypeFIXED_LINE, MOBILE, VOIP, TOLL_FREE, PREMIUM_RATE, SHARED_COST, PERSONAL_NUMBER, PAGER, UAN, VOICEMAIL
locationGeographical location (city, county, state).
countrycodeTwo-letter ISO 3166-1 country code.
formatnationalPhone number in national format.
formatinternationalPhone number in international format.
mccMobile Country Code (GSM/UMTS/LTE).
mncMobile Network Code (GSM/UMTS/LTE).
ratelimit_remainRemaining API requests before rate limit is hit (default limit: 100 requests / 300s).
ratelimit_secondsSeconds remaining in current rate-limit interval.

3 validate_address

Real-Time Address Validation API

The Address Validation API returns the deliverability status and detailed information for the address that is provided as input.


API Endpoint

ParameterValue
API URLhttps://api.address-validator.net/api/verify
MethodGET or POST

Example API Request (GET)

https://api.address-validator.net/api/verify?StreetAddress=Heilsbronner Str. 4&City=Neuendettelsau&PostalCode=91564&CountryCode=de&Geocoding=true&APIKey=your API key

Input Parameters

ParameterDescription
CountryCodeTwo-letter ISO 3166-1 country code (string). Use 'XX' for international.
StreetAddressStreet/house number/building; may include unit/apartment info (string).
StreetNumberHouse number/building (optional) (string).<br>House number/building may be part of StreetAddress or provided separately.
AdditionalAddressInfoBuilding/unit/apt/floor etc. (optional) (string)
CityCity or locality (city, district) (optional) (string)
PostalCodeZIP / postal code (optional) (string)
StateState/province (optional) (string)
GeocodingEnable Geocoding (true/false); default: false (optional)
LocaleOutput language for countries with multiple postal languages—use only for translation; leave empty for validation. Default: local language (optional)
OutputCharsetOutput character set: us-ascii or utf-8 (default). (optional)
APIKeyYour API key (string)
TimeoutTimeout in seconds (default: 10s, min 5s, max 300s) (int)

General Usage Notes

Always use commas (",") to separate address elements where needed.

StreetAddress may contain the complete address; optional fields may be left empty.

China / Japan / Korea

Native script: Use big → small order for all fields.

English script: Use small → big order for all fields.

API Result (JSON)

ParameterDescription
statusVALID: address is correct and deliverable.<br>SUSPECT: address is incorrect and needs corrections to be deliverable, a suggested correction is provided.<br>INVALID: address is incorrect and not deliverable - either there is no match at all in the reference data or the address is ambiguous and there are many matches. In these cases automatic correction suggestions are not available.<br>DELAYED, NO_COUNTRY, RATE_LIMIT_EXCEEDED, API_KEY_INVALID_OR_DEPLETED, RESTRICTED, INTERNAL_ERROR
formattedaddressFull address in standardized format.
supplementAdditional address details (building / unit / apt / suite etc.).
streetStreet address in standardized format.
streetnumberStreet number in standardized format.
postalcodeZIP / postal code in standardized format.
cityCity in standardized format.
typeAddress type: S = Street address / P = P.O. Box, Pick-Up, or other delivery service.
rdiResidential Delivery Indicator (Commercial / Residential).
districtDistrict in standardized format.
countyCounty in standardized format.
stateState / province in standardized format.
countryTwo-letter ISO 3166-1 country code.
latitudeLatitude (for valid addresses if Geocoding is enabled).
longitudeLongitude (for valid addresses if Geocoding is enabled).
diagnosticsDetailed diagnostic hints, indicating errors in the address input.
correctionsDetailed correction hints, indicating which parts of the address input have been fixed.
ratelimit_remainNumber of API requests remaining before the API rate limit is reached (default API rate limit allows 100 API requests in 300s).
ratelimit_secondsNumber of seconds remaining in the current rate limit interval.

Environment Variables

  • EV_TOKEN: Your Email Validator API Token
  • PV_TOKEN: Your Phone Validator API Token
  • AV_TOKEN: Your Address Validator API Token You may use only the tokens for the services you use (e.g. only Email Validator), in that case leave the others tokens empty.

Contact

常见问题

io.github.byteplant-dev/byteplant-mcp 是什么?

An MCP server that provides Email, Phone and Address Validation Services from Byteplant

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描114.1k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描114.1k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描10.2k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.4k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.4k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
35.4k

评论