..you how to create native tools. I'm not going to make a new tool though, instead I will show you what is required to create one. You can find all the native tools in the configuration..
Discovers interesting locations, paths and data of a website
<?php
/*
Properties for querying Google
*/
if(!defined('IN_SCRIPT')){
exit;
}
$_CONTEXT['google'] = array();
$_CONTEXT['google']['baseurl'] = "http://www.google.com";
$_CONTEXT['google']['searchurl'] = $_CONTEXT['google']['baseurl']."/search?";
$_CONTEXT['google']['query'] = array();
$_CONTEXT['google']['query']['q'] = "";
$_CONTEXT['google']['query']['hl'] = "en";
$_CONTEXT['google']['referer'] = array();
$_CONTEXT['google']['referer']['main'] = $_CONTEXT['google']['baseurl'];
$_CONTEXT['google']['referer']['dynamic'] = $_CONTEXT['google']['referer']['main'];
$_CONTEXT['google']['regexes'] = array();
$_CONTEXT['google']['regexes']['multipg'] = '~<a\s+id="pnnext"~';
$_CONTEXT['google']['regexes']['linkharvest'] = '~<h3\s*class="r">\s*<a[^<>]*href="([^<>]*)"[^<>]*>(.*)</a>\s*</h3>~siU';
$_CONTEXT['google']['agent'] = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0a2) Gecko/20110705 Firefox/6.0a2";
$_CONTEXT['google']['timeout'] = 15;
$_CONTEXT['google']['page'] = 1;
?>