How to Use the EmailListVerify MCP in Pydantic AI
Expose the EmailListVerify MCP server to Pydantic AI. Enforce strict runtime validation on every email check and bulk job status your agent handles.
Works with every AI agent you already use
…and any MCP-compatible client
Connect EmailListVerify MCP to Pydantic AI
Create your Vinkius account to connect EmailListVerify to Pydantic AI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Type-safe email validation with Pydantic AI
The `verify_single_email` tool feeds direct deliverability data into your Pydantic AI agent. When the agent checks an address, the framework validates the API response against your defined Pydantic models. If the verification status comes back malformed, the system fails loudly instead of silently corrupting your database. You care about correctness. This setup guarantees that your agent only acts on confirmed data. It takes the guesswork out of single-address checks because every string and boolean must match your exact schema before the agent proceeds.
Strict bulk file monitoring via MCP Server
The `list_verification_jobs` tool outputs the full array of bulk files currently sitting in your account. Your agent cross-references this with `list_in_progress_verification_jobs` to build an accurate queue state. If the API returns unexpected fields, Pydantic AI catches the anomaly immediately. Agents need reliable state tracking for async tasks. By calling `list_successfully_processed_files`, the agent knows exactly which lists are ready for download. The framework ensures the job IDs and completion timestamps are perfectly typed before your code executes the next step.
Hard-coded credit checks
The `get_remaining_credits` tool prevents your agent from running blind. It fetches the exact number of verification credits remaining. Your Pydantic models enforce that this value is an integer, so your agent never crashes trying to parse a weird string response from a depleted account. You can also run `quick_verification_health_audit` to pull success rates. The agent reads the metadata and halts operations if the deliverability metrics fall outside your predefined safety parameters.
Set up EmailListVerify MCP in Pydantic AI
Prerequisites
- Python 3.10+ installed
-
pydantic-ai-slim[fastmcp]package - Active Vinkius subscription with a valid endpoint token
- 1
Install Pydantic AI with FastMCP
Run
pip install "pydantic-ai-slim[fastmcp]". The FastMCP toolset replaces the deprecatedMCPServerHTTPclass with full protocol support. - 2
Configure the FastMCPToolset
Pass a JSON-style config dict to
FastMCPToolsetwith your Vinkius URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports Streamable HTTP, SSE, and Stdio transports. - 3
Create and run your agent
Pass the toolset to
Agent(toolsets=[toolset])and callagent.run(). Swapopenai:gpt-4ofor any supported model — Anthropic, Google, Mistral, or Groq.
from pydantic_ai import Agent
from pydantic_ai.toolsets.fastmcp import FastMCPToolset
toolset = FastMCPToolset({
"mcpServers": {
"emaillistverify-mcp": {
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
}
}
})
agent = Agent(
"openai:gpt-4o",
toolsets=[toolset],
system_prompt="You have access to EmailListVerify tools.",
)
result = await agent.run("List recent EmailListVerify transactions")
print(result.output) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by EmailListVerify. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about EmailListVerify MCP in Pydantic AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the EmailListVerify MCP today
We host it, we monitor it, we maintain it. You just paste one token.