Skip to content
toolfound

Monthly data report

August 2026

Every number below is the direct output of the SQL query printed under it. Nothing on this page is typed by hand.

Data current as of .

Headline numberValue
Submissions received83
Verification rate85.5%
Median time to verify0.0h
Launches61
Self-scheduled share0%
Indexable share52.5%

Each figure is expanded, with its own query, in the matching section below.

Submissions
83 received
SourceSubmissions
Web77
MCP6
Show the query
select source, count(*)::int as n
from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z'
  and source not like 'seed%'
group by source
order by source;
Verification
MeasureValue
Submissions received83
Verified71
Verification rate85.5%
Median time to verify0.0h
Show the query
select
  (select count(*)::int from submissions
     where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z' and source not like 'seed%') as total,
  (select count(*)::int from submissions
     where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z' and source not like 'seed%'
       and verified_at is not null) as verified,
  (select percentile_cont(0.5) within group (order by extract(epoch from (verified_at - created_at)) / 3600.0)
     from submissions
     where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z' and source not like 'seed%'
       and verified_at is not null) as median_hours_to_verify;
Launches
61 launched
MeasureValue
Launched61
Self-scheduled0
Self-scheduled share0%
Show the query
select
  count(*)::int as total,
  count(*) filter (where self_scheduled)::int as self_scheduled
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
  and source not like 'seed%';
Pricing model
Pricing modelLaunches
Pricing unlisted59
Freemium2

No launch this month gave a starting price.

Show the query
select pricing_model, count(*)::int as n
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
  and source not like 'seed%'
group by pricing_model
order by n desc, pricing_model;

select count(*)::int as priced,
       percentile_cont(0.5) within group (order by pricing_amount_usd) as median_price_usd
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
  and source not like 'seed%'
  and pricing_amount_usd is not null;
Categories
Primary category, top 8
CategoryLaunches
AI & ML11
Utilities10
Finance6
API & Dev Tools5
Marketing & SEO4
Privacy & Security4
E-commerce3
Social Media3
Show the query
select c.slug, c.name, count(*)::int as n
from product_categories pc
join products p on p.id = pc.product_id
join categories c on c.slug = pc.category_slug
where pc.is_primary
  and p.status = 'launched' and p.launch_date >= '2026-08-01' and p.launch_date < '2026-09-01'
  and p.source not like 'seed%'
group by c.slug, c.name
order by n desc, c.name
limit 8;
Indexability
MeasureValue
Launched61
Indexable32
Indexable share52.5%
Median description length32 words
Under 100 words60 (98.4%)

A listing under 100 original words in its description is the single most common reason a page ships noindex — see how ranking works.

Show the query
with launched as (
  select is_indexable,
    case when btrim(coalesce(description, '')) = '' then 0
         else array_length(regexp_split_to_array(btrim(description), '\s+'), 1)
    end as words
  from products
  where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
    and source not like 'seed%'
)
select
  count(*)::int as total,
  count(*) filter (where is_indexable)::int as indexable,
  count(*) filter (where words < 100)::int as under_100_words,
  percentile_cont(0.5) within group (order by words) as median_words
from launched;
Referrers
Submission first-touch attribution
ReferrerSubmissions
Unattributed83
Show the query
select
  case
    when referrer_source = 'chatgpt.com' then 'chatgpt.com'
    when referrer_source = 'mcp' then 'mcp'
    when referrer_source is null then 'unattributed'
    else 'other'
  end as bucket,
  count(*)::int as n
from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z'
  and source not like 'seed%'
group by bucket
order by n desc;
Page requests
/tool/[slug], by requester type

No page-request rows recorded this month.

Show the query
select bucket, sum(n)::int as n
from listing_requests
where day >= '2026-08-01' and day < '2026-09-01'
group by bucket
order by n desc;
Top launches
By points (votes + listing score)

pilotmyx.com

Understand what works on X/Twitter, then plan what comes next.

Pricing unlisted

imperio-app.com

Reçus scannés, TVA calculée, comptable heureux

Pricing unlisted

timetopost.co

Social media scheduling built for humans and their AI agents.

Pricing unlisted

domscan.net

Collect public web data, investigate domains and infrastructure, assess trust signals, verify digital identity inputs,…

Freemium

selling-planet.com

광고 단가·최소 수량·필수 정보를 먼저 비교하고 직접 주문하며, 네이버 순위·ROAS·UTM 도구를 무료로 쓰는 한국어 셀프 마케팅 플랫폼

Freemium

alltoolsverse.com

1,000+ free browser tools for development, files, images, text, data, and everyday tasks.

Pricing unlisted

yamate.au

Quote on site, invoice with PayID, chase late payers and know who owes you money.

Pricing unlisted

escapechatcontrol.com

Practical privacy guidance while messaging scanning laws advance

Pricing unlisted

screenshotlens.com

Full-page screenshots, rolling video, and a clean REST API.

Pricing unlisted

vrizen.com

AI-powered solutions and automation that help businesses work smarter and grow faster.

Pricing unlisted
Show the query
select *
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
  and source not like 'seed%'
order by (votes_count + ai_score) desc, launch_date desc
limit 10;