Byteplant Validator MCP Server

Byteplant Validator MCP Server

Provides email, phone, and address validation using Byteplant's APIs. Enables real-time live validation in any MCP-compatible client.

Category
访问服务器

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.

pip install byteplant-mcp

2. Configuration

Next, add the MCP server to Claude configuration.

{
	"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

Parameter Value
API URL https://api.email-validator.net/api/verify
Method GET or POST

Example API Request (GET)

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


Input Parameters

Parameter Description
EmailAddress Email address to validate (string).
APIKey Your API key (string).
Timeout Timeout in seconds (int). Default: 10 (min 5, max 300).

API Result (JSON)

Parameter Description
status API 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
info Short status description.
details Full status description.
freemail Indicates if email is from a freemail provider (true / false).
ratelimit_remain Remaining API requests before rate limit is reached (default: 100 requests / 300s).
ratelimit_seconds Seconds 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

Parameter Value
API URL https://api.phone-validator.net/api/v2/verify
Method GET 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

Parameter Description
PhoneNumber Phone number to validate (string, URL encoded). Accepts national format or international format with leading + (+%2B, space → %20).
CountryCode Two-letter ISO 3166-1 country code (string). Optional if number is in international format.
Locale IETF language tag for geocoding (string). Optional; default: en-US.
Mode Validation mode (string): express (static checks) or extensive (full validation). Optional; default: extensive.
APIKey Your API key (string).
Timeout Timeout in seconds (int). Optional; default: 10 (min 5, max 300).

API Result (JSON)

Parameter Description
status VALID_CONFIRMED, VALID_UNCONFIRMED, INVALID, DELAYED, RATE_LIMIT_EXCEEDED, API_KEY_INVALID_OR_DEPLETED
linetype FIXED_LINE, MOBILE, VOIP, TOLL_FREE, PREMIUM_RATE, SHARED_COST, PERSONAL_NUMBER, PAGER, UAN, VOICEMAIL
location Geographical location (city, county, state).
countrycode Two-letter ISO 3166-1 country code.
formatnational Phone number in national format.
formatinternational Phone number in international format.
mcc Mobile Country Code (GSM/UMTS/LTE).
mnc Mobile Network Code (GSM/UMTS/LTE).
ratelimit_remain Remaining API requests before rate limit is hit (default limit: 100 requests / 300s).
ratelimit_seconds Seconds 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

Parameter Value
API URL https://api.address-validator.net/api/verify
Method GET 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

Parameter Description
CountryCode Two-letter ISO 3166-1 country code (string). Use 'XX' for international.
StreetAddress Street/house number/building; may include unit/apartment info (string).
StreetNumber House number/building (optional) (string).<br>House number/building may be part of StreetAddress or provided separately.
AdditionalAddressInfo Building/unit/apt/floor etc. (optional) (string)
City City or locality (city, district) (optional) (string)
PostalCode ZIP / postal code (optional) (string)
State State/province (optional) (string)
Geocoding Enable Geocoding (true/false); default: false (optional)
Locale Output language for countries with multiple postal languages—use only for translation; leave empty for validation. Default: local language (optional)
OutputCharset Output character set: us-ascii or utf-8 (default). (optional)
APIKey Your API key (string)
Timeout Timeout 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)

Parameter Description
status VALID: 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
formattedaddress Full address in standardized format.
supplement Additional address details (building / unit / apt / suite etc.).
street Street address in standardized format.
streetnumber Street number in standardized format.
postalcode ZIP / postal code in standardized format.
city City in standardized format.
type Address type: S = Street address / P = P.O. Box, Pick-Up, or other delivery service.
rdi Residential Delivery Indicator (Commercial / Residential).
district District in standardized format.
county County in standardized format.
state State / province in standardized format.
country Two-letter ISO 3166-1 country code.
latitude Latitude (for valid addresses if Geocoding is enabled).
longitude Longitude (for valid addresses if Geocoding is enabled).
diagnostics Detailed diagnostic hints, indicating errors in the address input.
corrections Detailed correction hints, indicating which parts of the address input have been fixed.
ratelimit_remain Number of API requests remaining before the API rate limit is reached (default API rate limit allows 100 API requests in 300s).
ratelimit_seconds Number 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

  • Website: https://www.byteplant.com

  • Get your API key: https://www.byteplant.com/account/

  • Email: contact@byteplant.com

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选