Wraps the IPQualityScore fraud detection API through the Pipeworx gateway, giving your AI agent access to IP reputation checks, email validation, phone number verification, and other fraud prevention lookups. The source repo doesn't list specific tools, but IPQualityScore typically handles things like proxy detection, geolocation accuracy scoring, and abuse velocity checks. You can call tools directly or use the ask_pipeworx natural language interface to query fraud data without knowing exact parameters. Hosted remotely over streamable HTTP, so no local setup needed. Useful when you're building AI workflows that need to vet user data, flag suspicious traffic, or enrich contact information with fraud scores before taking action.
IPQualityScore MCP — wraps the IPQualityScore fraud-prevention API
Part of Pipeworx — an MCP gateway connecting AI agents to 748+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"ipqualityscore": {
"url": "https://gateway.pipeworx.io/ipqualityscore/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 748+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Ipqualityscore data" })
The gateway picks the right tool and fills the arguments automatically.
MIT