Back to Search

neo_util_regex_extractor

v0.1.0

Quickly extract structured data (emails, IPs, URLs) using Regex.

$0.002 / call (Standard Tier)
Updated: Apr 29, 2026

Overview

A powerful data extraction tool. It applies Regular Expressions to quickly and accurately pull structured data (such as emails, IP addresses, and URLs) from massive blocks of text or internal resource URIs, avoiding token limits and hallucination skips.

Example Input

JSON payload sent to this tool:

  {
    "text": "Contact us at info@example.com",
    "pattern": "[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}"
  }



  {
    "resource_uri": "neonia://memory/logs.txt",
    "pattern": "[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}"
  }

Example Output

Formatted JSON response returned by this tool:

["test@example.com", "admin@neonia.io"]

Setup Configuration

Add the following configuration to your MCP general settings or mcp_config.json:

{
  "mcpServers": {
    "neonia": {
      "serverUrl": "https://mcp.neonia.io/mcp?tools=neo_util_regex_extractor",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}