<?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: Yong Yu</title>
    <description>The latest articles on DEV Community by Yong Yu (@yong_yu_f98e15562e9b120a0).</description>
    <link>https://dev.to/yong_yu_f98e15562e9b120a0</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%2F4111445%2F9d2f3d6e-4942-4b84-90f1-c3f0ff3b5479.jpg</url>
      <title>DEV Community: Yong Yu</title>
      <link>https://dev.to/yong_yu_f98e15562e9b120a0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yong_yu_f98e15562e9b120a0"/>
    <language>en</language>
    <item>
      <title>resume-mcp: grounding agents in public resume.json over MCP</title>
      <dc:creator>Yong Yu</dc:creator>
      <pubDate>Sat, 05 Sep 2026 17:11:57 +0000</pubDate>
      <link>https://dev.to/yong_yu_f98e15562e9b120a0/resume-mcp-an-mcp-server-that-answers-who-yongbo-yu-is-from-public-evidence-428d</link>
      <guid>https://dev.to/yong_yu_f98e15562e9b120a0/resume-mcp-an-mcp-server-that-answers-who-yongbo-yu-is-from-public-evidence-428d</guid>
      <description>&lt;p&gt;I built a small stdio &lt;a href="https://modelcontextprotocol.io" rel="noopener noreferrer"&gt;MCP&lt;/a&gt; server that fetches public machine-readable pages, caches them, and returns &lt;strong&gt;tool answers with source URLs&lt;/strong&gt; — so an agent can ground itself instead of inventing a bio.&lt;/p&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/YongBoYu1/resume-mcp" rel="noopener noreferrer"&gt;github.com/YongBoYu1/resume-mcp&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;MCP clients are good at calling tools. They are weak at &lt;em&gt;citing&lt;/em&gt;. If your only “memory” is model weights, you get confident nonsense about people, projects, and dates.&lt;/p&gt;

&lt;p&gt;A boring fix: put evidence on the open web as JSON / prerendered pages, then expose a tiny MCP surface that &lt;strong&gt;must&lt;/strong&gt; return the URLs it used.&lt;/p&gt;

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

&lt;p&gt;&lt;code&gt;resume-mcp&lt;/code&gt; is a local &lt;strong&gt;stdio&lt;/strong&gt; server. On demand it fetches and caches:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;https://yongbo-yu.vercel.app/resume.json&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;optionally &lt;code&gt;https://yongbo-yu.vercel.app/llms.txt&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tools (small on purpose):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;who_is_yongbo_yu&lt;/code&gt; — short identity blurb + canonical links&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;list_projects&lt;/code&gt; — projects from &lt;code&gt;resume.json&lt;/code&gt; (with evidence links when available)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;get_resume_summary&lt;/code&gt; — work / education / skills&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;search_evidence&lt;/code&gt; — keyword search over the cached public text&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every response includes a &lt;code&gt;sources&lt;/code&gt; list. No private repos. No scraping authenticated profiles. No secrets.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cursor &lt;code&gt;mcp.json&lt;/code&gt;
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"resume-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"python3"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"-m"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"resume_mcp"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"cwd"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"/absolute/path/to/resume-mcp"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Install with &lt;code&gt;pip install -e .&lt;/code&gt; from the repo, then point &lt;code&gt;cwd&lt;/code&gt; (or the venv interpreter) at that checkout.&lt;/p&gt;

&lt;h2&gt;
  
  
  Example prompts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;"Summarize the public resume this MCP is wired to, with sources."&lt;/li&gt;
&lt;li&gt;"List projects from resume.json and show the source URLs."&lt;/li&gt;
&lt;li&gt;"Search the cached evidence for FastAPI / booking / latency."&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why this shape
&lt;/h2&gt;

&lt;p&gt;This is a few-hour experiment on the MCP wave: &lt;strong&gt;stdio + fetch/cache + citable tool output&lt;/strong&gt;. The dataset happens to be my public reputation site, but the pattern is general — any &lt;code&gt;resume.json&lt;/code&gt; / &lt;code&gt;llms.txt&lt;/code&gt; style corpus could be swapped in.&lt;/p&gt;

&lt;p&gt;If you try it, star the repo or open an issue with the tool response you expected.&lt;/p&gt;

&lt;p&gt;— YongBo Yu (Toronto) · &lt;a href="https://yongbo-yu.vercel.app" rel="noopener noreferrer"&gt;yongbo-yu.vercel.app&lt;/a&gt; · &lt;a href="https://github.com/YongBoYu1" rel="noopener noreferrer"&gt;github.com/YongBoYu1&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>agents</category>
      <category>python</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
