abstractapi-mcp-server

abstractapi-mcp-server

abstractapi-mcp-server

Category
访问服务器

README

Abstract API MCP Server

A Model Context Protocol (MCP) server that provides email and phone validation tools using Abstract API services. This server is built with FastMCP, making it easy to integrate validation capabilities into AI applications and workflows.

Overview

This MCP server exposes three main validation tools:

  • Email Validation: Comprehensive email address validation and verification
  • Phone Validation: Phone number validation for 190+ countries
  • Email Reputation: Advanced email reputation analysis with security insights

Features

Email Validation

  • Format validation
  • Deliverability checking
  • Domain verification
  • SMTP validation
  • Detection of disposable/role/catchall emails
  • Quality scoring

Phone Validation

  • International phone number validation
  • Format standardization (international/local)
  • Country and carrier identification
  • Phone type detection (mobile, landline, etc.)
  • Location information

Email Reputation

  • Comprehensive deliverability analysis
  • Quality scoring and risk assessment
  • Sender and organization identification
  • Domain security analysis (DMARC, SPF)
  • Data breach history tracking
  • Fraud and abuse detection

Prerequisites

  • Python 3.11+
  • uv (fast Python package installer)
  • Abstract API key (get one at abstractapi.com)

Installation

Option 1: Using uv (Recommended)

  1. Clone the repository:
git clone https://github.com/avivshafir/abstractapi-mcp-server
cd abstractapi-mcp-server
  1. Create virtual environment and install dependencies:
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install .
  1. Set up environment variables:
cp .env.example .env
# Edit .env and add your Abstract API key

Option 2: Using traditional pip

  1. Clone the repository:
git clone https://github.com/avivshafir/abstractapi-mcp-server
cd abstractapi-mcp-server
  1. Create a virtual environment:
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up environment variables:
cp .env.example .env
# Edit .env and add your Abstract API key

Your .env file should contain:

ABSTRACT_API_KEY=your_abstract_api_key_here

Usage

Running the MCP Server

The server can be run in stdio mode for integration with MCP clients:

# With uv (if virtual environment is activated)
python server.py

# Or run directly with uv
uv run server.py

FastMCP Framework

This server is built using FastMCP, a Python framework that simplifies MCP server development. FastMCP provides:

  • Automatic tool registration: Functions decorated with @mcp.tool() are automatically exposed as MCP tools
  • Type safety: Full type hints and validation
  • Easy async support: Native async/await support
  • Simplified server setup: Minimal boilerplate code

Key FastMCP Concepts

from mcp.server.fastmcp import FastMCP

# Initialize the server
mcp = FastMCP("abstract_api")

# Register a tool
@mcp.tool()
async def my_tool(param: str) -> dict:
    """Tool description for AI clients"""
    return {"result": param}

# Run the server
mcp.run(transport="stdio")

Available Tools

1. Email Validation (verify_email)

Validates email addresses and returns comprehensive information.

Parameters:

  • email (str): Email address to validate

Example Response:

{
  "email": "user@example.com",
  "deliverability": "DELIVERABLE",
  "quality_score": "0.99",
  "is_valid_format": {"value": true, "text": "TRUE"},
  "is_free_email": {"value": false, "text": "FALSE"},
  "is_disposable_email": {"value": false, "text": "FALSE"},
  "is_role_email": {"value": false, "text": "FALSE"},
  "is_catchall_email": {"value": false, "text": "FALSE"},
  "is_mx_found": {"value": true, "text": "TRUE"},
  "is_smtp_valid": {"value": true, "text": "TRUE"}
}

2. Phone Validation (validate_phone)

Validates phone numbers from 190+ countries.

Parameters:

  • phone (str): Phone number to validate
  • country (str, optional): ISO country code for context

Example Response:

{
  "phone": "14152007986",
  "valid": true,
  "format": {
    "international": "+14152007986",
    "local": "(415) 200-7986"
  },
  "country": {
    "code": "US",
    "name": "United States",
    "prefix": "+1"
  },
  "location": "California",
  "type": "mobile",
  "carrier": "T-Mobile USA, Inc."
}

3. Email Reputation (check_email_reputation)

Provides comprehensive email reputation analysis including security insights and breach history.

Parameters:

  • email (str): Email address to analyze

Example Response:

{
  "email_address": "benjamin.richard@abstractapi.com",
  "email_deliverability": {
    "status": "deliverable",
    "status_detail": "valid_email",
    "is_format_valid": true,
    "is_smtp_valid": true,
    "is_mx_valid": true,
    "mx_records": ["gmail-smtp-in.l.google.com", "..."]
  },
  "email_quality": {
    "score": 0.8,
    "is_free_email": false,
    "is_username_suspicious": false,
    "is_disposable": false,
    "is_catchall": true,
    "is_subaddress": false,
    "is_role": false,
    "is_dmarc_enforced": true,
    "is_spf_strict": true,
    "minimum_age": 1418
  },
  "email_sender": {
    "first_name": "Benjamin",
    "last_name": "Richard",
    "email_provider_name": "Google",
    "organization_name": "Abstract API",
    "organization_type": "company"
  },
  "email_domain": {
    "domain": "abstractapi.com",
    "domain_age": 1418,
    "is_live_site": true,
    "registrar": "NAMECHEAP INC",
    "date_registered": "2020-05-13",
    "date_expires": "2025-05-13",
    "is_risky_tld": false
  },
  "email_risk": {
    "address_risk_status": "low",
    "domain_risk_status": "low"
  },
  "email_breaches": {
    "total_breaches": 2,
    "date_first_breached": "2018-07-23T14:30:00Z",
    "date_last_breached": "2019-05-24T14:30:00Z",
    "breached_domains": [
      {"domain": "apollo.io", "date_breached": "2018-07-23T14:30:00Z"},
      {"domain": "canva.com", "date_breached": "2019-05-24T14:30:00Z"}
    ]
  }
}

Integration with MCP Clients

Add this server to your mcp configuration:

{
  "mcpServers": {
    "abstract-api": {
      "command": "uv",
      "args": ["run", "/path/to/mcp-abstract-api/server.py"],
      "env": {
        "ABSTRACT_API_KEY": "your_api_key_here"
      }
    }
  }
}

Alternatively, if you prefer to use the traditional approach:

{
  "mcpServers": {
    "abstract-api": {
      "command": "python",
      "args": ["/path/to/mcp-abstract-api/server.py"],
      "env": {
        "ABSTRACT_API_KEY": "your_api_key_here"
      }
    }
  }
}

Other MCP Clients

This server follows the standard MCP protocol and can be integrated with any MCP-compatible client. The server communicates via stdio transport.

Error Handling

The server includes comprehensive error handling:

  • API Key Validation: Checks for missing API keys
  • HTTP Error Handling: Proper handling of API response errors
  • Input Validation: Type checking and parameter validation
  • Graceful Degradation: Meaningful error messages for debugging

API Rate Limits

Abstract API has different rate limits based on your plan:

  • Free plans: 1 request per second
  • Paid plans: Higher rate limits available

Each API call counts as one credit, regardless of whether the validation succeeds or fails.

Development

Project Structure

mcp-abstract-api/
├── server.py          # Main MCP server implementation
├── .env              # Environment variables (not in repo)
├── .env.example      # Environment template
├── requirements.txt  # Python dependencies (pip format)
├── uv.lock           # uv lock file for reproducible builds
├── pyproject.toml    # Project configuration
├── README.md         # This file
└── LICENSE          # MIT License

Adding New Tools

To add new Abstract API tools:

  1. Add the API endpoint URL as a constant
  2. Create a new function decorated with @mcp.tool()
  3. Add comprehensive docstring with parameter and return descriptions
  4. Implement error handling following the existing pattern

Example:

@mcp.tool()
async def new_validation_tool(param: str) -> dict[str, Any]:
    """
    Description of what this tool does.
    
    Args:
        param (str): Description of parameter
        
    Returns:
        dict[str, Any]: Description of return value
    """
    # Implementation here
    pass

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

For issues related to:

Acknowledgments

推荐服务器

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 模型以安全和受控的方式获取实时的网络信息。

官方
精选