<?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: Alex Akimov</title>
    <description>The latest articles on DEV Community by Alex Akimov (@alex-akimov).</description>
    <link>https://dev.to/alex-akimov</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F655669%2F00767e24-0d1d-4c07-bd16-5289947209ff.png</url>
      <title>DEV Community: Alex Akimov</title>
      <link>https://dev.to/alex-akimov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alex-akimov"/>
    <language>en</language>
    <item>
      <title>The MCP 2026-07-28 spec is final - check your server in one command!</title>
      <dc:creator>Alex Akimov</dc:creator>
      <pubDate>Mon, 03 Aug 2026 05:24:56 +0000</pubDate>
      <link>https://dev.to/mcpscore/the-mcp-2026-07-28-spec-is-final-check-your-server-in-one-command-438k</link>
      <guid>https://dev.to/mcpscore/the-mcp-2026-07-28-spec-is-final-check-your-server-in-one-command-438k</guid>
      <description>&lt;p&gt;The &lt;a href="https://blog.modelcontextprotocol.io/posts/2026-07-28/" rel="noopener noreferrer"&gt;Model Context Protocol's 2026-07-28 revision&lt;/a&gt; went final on July 28. It's a meaningful one: the lifecycle moves to stateless requests. If you maintain an MCP server, the two questions are: &lt;em&gt;is my server still well-built, and is it ready for the new spec?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;mcpscore&lt;/strong&gt; answers both in one command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx mcpscore https://your-server.example/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No install, no API key. In a few seconds you get a 0–100 quality score and a list of exactly what to fix.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it checks
&lt;/h2&gt;

&lt;p&gt;72 deterministic rules, each citing the spec section it enforces, grouped into four categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Protocol&lt;/strong&gt;: version negotiation, transport correctness, error shapes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tools Quality&lt;/strong&gt;: names, titles, descriptions, input/output schemas.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security &amp;amp; Auth&lt;/strong&gt;: TLS, auth posture, safe error handling.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Readiness&lt;/strong&gt;: how ready you are for the 2026-07-28 lifecycle.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's deterministic - the same server always gets the same score, so it's stable in CI, and it's read-only: it lists your tools and probes behavior but never calls a tool, so auditing is side-effect-free. Local servers in any language audit over stdio too — &lt;code&gt;mcpscore --stdio ./my-go-server&lt;/code&gt;, &lt;code&gt;--stdio java -jar server.jar&lt;/code&gt; — not just &lt;code&gt;.py&lt;/code&gt;/&lt;code&gt;.js&lt;/code&gt; files.&lt;/p&gt;

&lt;h2&gt;
  
  
  Servers behind OAuth
&lt;/h2&gt;

&lt;p&gt;Most production MCP servers are auth-gated, and until now that meant unauditable. This release changes that:&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;# full audit with your token (also reads MCPSCORE_TOKEN)&lt;/span&gt;
uvx mcpscore &lt;span class="nt"&gt;--token&lt;/span&gt; &lt;span class="nv"&gt;$TOKEN&lt;/span&gt; https://api.example.com/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And with no credentials at all, a 401 server gets a &lt;strong&gt;partial audit&lt;/strong&gt; of its observable surface, including auth-posture rules that check the &lt;code&gt;WWW-Authenticate&lt;/code&gt; challenge, RFC 9728 protected-resource metadata, the authorization server's RFC 8414 metadata, and PKCE support. The gate itself Tokens never appear in logs or reports.&lt;/p&gt;

&lt;h2&gt;
  
  
  In CI
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;mcp-box/mcpscore-action@v1&lt;/span&gt;
  &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;https://your-server.example/mcp&lt;/span&gt;
    &lt;span class="na"&gt;min-score&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;90&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It comments the report on the PR and fails the check below your threshold.&lt;/p&gt;

&lt;h2&gt;
  
  
  The badge
&lt;/h2&gt;

&lt;p&gt;Add a live score badge to your README from the report page at &lt;a href="https://mcpscore.dev" rel="noopener noreferrer"&gt;mcpscore.dev&lt;/a&gt; - it reflects your server's latest score.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why "score", not "audit"
&lt;/h2&gt;

&lt;p&gt;There's a good official conformance suite for "is my server legal." mcpscore is the other question - "how good is it" - the way Lighthouse scores a web page's quality, not just its validity. It runs on the official MCP Python SDK v2, it's open source (MIT), and the methodology is public: &lt;a href="https://docs.mcpscore.dev/methodology" rel="noopener noreferrer"&gt;https://docs.mcpscore.dev/methodology&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Point it at your server and see where you land!&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>opensource</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
