<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tuf Ti</title>
    <description>The latest articles on DEV Community by Tuf Ti (@tufti).</description>
    <link>https://dev.to/tufti</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3901422%2F59d522fc-441d-47d7-a80a-e5dd3c3d07cb.jpg</url>
      <title>DEV Community: Tuf Ti</title>
      <link>https://dev.to/tufti</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tufti"/>
    <language>en</language>
    <item>
      <title>I Tested 70 AI Agent Services. The Average Quality Score Was 34 Out of 100.</title>
      <dc:creator>Tuf Ti</dc:creator>
      <pubDate>Tue, 28 Apr 2026 02:44:56 +0000</pubDate>
      <link>https://dev.to/tufti/i-tested-70-ai-agent-services-the-average-quality-score-was-34-out-of-100-4g5i</link>
      <guid>https://dev.to/tufti/i-tested-70-ai-agent-services-the-average-quality-score-was-34-out-of-100-4g5i</guid>
      <description>&lt;p&gt;This is my first post here, so let me start with the punchline: the x402 agent economy is booming, but most of the services in it are garbage.&lt;/p&gt;

&lt;p&gt;I know that sounds harsh. Let me show you the data.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is x402?
&lt;/h2&gt;

&lt;p&gt;If you haven't heard of it, x402 is a protocol that lets AI agents pay for API calls using USDC stablecoins. No API keys. No accounts. No subscriptions. An agent just sends a micropayment with each request and gets data back. Think Stripe, but for machines talking to machines.&lt;/p&gt;

&lt;p&gt;The ecosystem has exploded. There are now over 1,400 services accepting x402 payments, covering everything from weather data to DeFi analytics to LLM inference. Coinbase even launched their own marketplace for it a few weeks ago.&lt;/p&gt;

&lt;p&gt;But nobody was asking the obvious question: are these services actually any good?&lt;/p&gt;

&lt;h2&gt;
  
  
  So I Built a Search Engine That Grades Them
&lt;/h2&gt;

&lt;p&gt;I run an autonomous AI agent called Cinderwright. It lives on a VPS, has its own crypto wallet, and builds/deploys its own code. (Yes, really. No, I don't write the code. The agent does. I just tell it what to build.)&lt;/p&gt;

&lt;p&gt;I pointed it at the x402 ecosystem and told it to do three things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Index every x402 service it could find&lt;/strong&gt; (currently 1,455)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Test them for quality&lt;/strong&gt; (reachability, valid JSON responses, MCP discovery files, proper 402 payment responses, response time)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Grade them A through F&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Here's what it found.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Results Are Rough
&lt;/h2&gt;

&lt;p&gt;Out of 70 services tested in the latest run:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Grade A:&lt;/strong&gt; 1 service (yeah, it's mine, I know)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grade B:&lt;/strong&gt; 4 services&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grade C:&lt;/strong&gt; 18 services&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grade D:&lt;/strong&gt; 47 services&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grade F:&lt;/strong&gt; 0 (at least nobody completely failed)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Average quality score: &lt;strong&gt;35 out of 100&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The most common problems:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;52 out of 70&lt;/strong&gt; don't have a &lt;code&gt;/.well-known/mcp.json&lt;/code&gt; file. This is how other agents discover what your service does. Without it, you're invisible to automated discovery.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;51 out of 70&lt;/strong&gt; don't return valid JSON at their root URL. If an agent hits your homepage and gets an HTML error page, it has no idea what you offer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;13&lt;/strong&gt; had MCP files that existed but contained invalid JSON.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Basically, most x402 services were built for hackathons, deployed on free tiers, and never maintained.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Good Services Look Like
&lt;/h2&gt;

&lt;p&gt;The services that scored B or above all had a few things in common:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A clean JSON response at the root listing their endpoints and pricing&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;/.well-known/mcp.json&lt;/code&gt; or &lt;code&gt;/.well-known/x402.json&lt;/code&gt; discovery file&lt;/li&gt;
&lt;li&gt;Proper 402 responses on paid endpoints (with payment details in headers)&lt;/li&gt;
&lt;li&gt;Response times under 500ms&lt;/li&gt;
&lt;li&gt;Actually being online when you check&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This isn't rocket science. It's just basic hygiene that most projects skip.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Thing Nobody Else Built
&lt;/h2&gt;

&lt;p&gt;While I was at it, I built something I couldn't find anywhere else in the ecosystem: intent-based discovery.&lt;/p&gt;

&lt;p&gt;Instead of searching by keyword ("weather") or category ("financial"), you describe what you need in plain English:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;POST /find
{"intent": "I need a cheap weather API for Tokyo that costs less than $0.02"}
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The hub uses an LLM to parse what you're asking for, matches it against the index, and returns a recommendation with alternatives. It also runs a comparison engine that ranks services side-by-side by quality, price, and speed.&lt;/p&gt;

&lt;p&gt;Nobody else does this. Not Coinbase's Agentic.market. Not the rival discovery APIs. They all do keyword search. We do Google-style "just tell me what you need."&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I'm Sharing This
&lt;/h2&gt;

&lt;p&gt;Two reasons.&lt;/p&gt;

&lt;p&gt;First, if you're building x402 services, check your basics. Add a discovery file. Return JSON at your root. Make sure your 402 responses include proper payment headers. These are table stakes and most projects are missing them.&lt;/p&gt;

&lt;p&gt;Second, if you're building agents that consume x402 services, you can use the quality data for free:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# See ecosystem stats&lt;/span&gt;
curl https://api.ideafactorylab.org/stats

&lt;span class="c"&gt;# See quality grades&lt;/span&gt;
curl https://api.ideafactorylab.org/quality

&lt;span class="c"&gt;# See pricing trends&lt;/span&gt;
curl https://api.ideafactorylab.org/prices
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The paid discovery endpoints (search, compare, intent-based find) are $0.01-$0.02 per query. The full code examples are on &lt;a href="https://github.com/cinderwright-ai/cinderwright-api/blob/main/DEMO.md" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;I'm publishing a weekly ecosystem pulse report that tracks new services, dead services, quality trends, and pricing shifts. The first one is &lt;a href="https://github.com/cinderwright-ai/cinderwright-api/blob/main/ECOSYSTEM-PULSE.md" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you're running an x402 service and want it indexed, submit it for free:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://api.ideafactorylab.org/submit &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"url":"https://your-api.com"}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And if you have thoughts on what else the ecosystem needs, I'm all ears. Like I said, first post here. Be gentle.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Cinderwright is an autonomous AI agent running on &lt;a href="https://openclaw.com" rel="noopener noreferrer"&gt;OpenClaw&lt;/a&gt;. The Discovery Hub is live at &lt;a href="https://api.ideafactorylab.org" rel="noopener noreferrer"&gt;api.ideafactorylab.org&lt;/a&gt;. Source on &lt;a href="https://github.com/cinderwright-ai/cinderwright-api" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>web3</category>
      <category>agents</category>
      <category>x402</category>
    </item>
  </channel>
</rss>
