<?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>Forem: enoki</title>
    <description>The latest articles on Forem by enoki (@enoki85).</description>
    <link>https://forem.com/enoki85</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%2F3848869%2Fe9dd1495-bb6a-4ba0-bfba-b55217dab520.jpeg</url>
      <title>Forem: enoki</title>
      <link>https://forem.com/enoki85</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/enoki85"/>
    <language>en</language>
    <item>
      <title>Building a Daily Chinese Diary Habit with Notion MCP + Claude</title>
      <dc:creator>enoki</dc:creator>
      <pubDate>Sun, 29 Mar 2026 12:56:09 +0000</pubDate>
      <link>https://forem.com/enoki85/building-a-daily-chinese-diary-habit-with-notion-mcp-claude-l3n</link>
      <guid>https://forem.com/enoki85/building-a-daily-chinese-diary-habit-with-notion-mcp-claude-l3n</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/notion-2026-03-04"&gt;Notion MCP Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I built an automated workflow for my daily Chinese learning habit called &lt;strong&gt;"中国語3行日記" (3-Line Chinese Diary)&lt;/strong&gt;. Every day, I write a 3-sentence Chinese diary entry based on a daily theme, get it corrected by Claude, and post it to Bluesky — all without leaving Claude's chat UI.&lt;/p&gt;

&lt;p&gt;The system is powered by &lt;strong&gt;Notion + Claude MCP + GitHub Actions&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Notion&lt;/strong&gt; stores the daily themes (Questions DB) and my answers with correction notes (Answers DB)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude MCP&lt;/strong&gt; fetches the day's theme, corrects my Chinese, records the answer and notes back to Notion, and helps me analyze my writing patterns over time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Actions&lt;/strong&gt; runs a daily cron job at 21:00 JST to automatically post scheduled answers to Bluesky&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As of today, I've kept this habit going for over 225 days.&lt;/p&gt;

&lt;h2&gt;
  
  
  Video Demo
&lt;/h2&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/m1Rc5yFXo94"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Show us the code
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/enoki-85/3-line-diary-scheduler" rel="noopener noreferrer"&gt;github.com/enoki-85/3-line-diary-scheduler&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Used Notion MCP
&lt;/h2&gt;

&lt;h3&gt;
  
  
  The Daily Workflow
&lt;/h3&gt;

&lt;p&gt;Each session follows this flow entirely within Claude's chat UI:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;I tell Claude which day's theme to fetch → Claude retrieves it from the Notion Questions DB via MCP&lt;/li&gt;
&lt;li&gt;I write my 3-sentence Chinese diary entry&lt;/li&gt;
&lt;li&gt;Claude corrects my Chinese and explains the mistakes&lt;/li&gt;
&lt;li&gt;Claude registers the final answer, pinyin, and correction notes to the Notion Answers DB via MCP&lt;/li&gt;
&lt;li&gt;GitHub Actions picks it up at 21:00 JST and posts it to Bluesky automatically&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Looking Back at My Writing Patterns
&lt;/h3&gt;

&lt;p&gt;Beyond the daily workflow, I can ask Claude to retrieve past answers from Notion and review my correction notes. Since all notes are stored in Notion, I can look back at specific entries and spot recurring mistakes. I'm also planning to build a GitHub Actions workflow that summarizes each month's entries into a dedicated Notion page, which would make longer-term pattern analysis much easier.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why This Stack Works
&lt;/h3&gt;

&lt;p&gt;Before this system, I went through a few iterations. I started by handwriting entries, then manually formatting and posting them. I later built a web app to streamline the process — but it required server costs, and since the themes are sourced from copyrighted material, I couldn't make the repo public. I was also using the Claude API separately, adding unnecessary cost on top of my Claude MAX plan.&lt;/p&gt;

&lt;p&gt;Switching to Notion MCP + Claude solved all of this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No extra server costs&lt;/strong&gt; — GitHub Actions handles the automation for free&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No API costs&lt;/strong&gt; — everything runs within my Claude MAX plan&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No friction&lt;/strong&gt; — theme retrieval, correction, and Notion registration all happen in one chat&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The repo is private-safe&lt;/strong&gt; — theme data lives in Notion, not in the codebase&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The most important shift was removing everything except the actual learning. Writing and getting corrected is the core habit. Everything else — fetching themes, formatting posts, storing notes, posting to Bluesky — is now invisible. On days when motivation is low, having a smaller, frictionless target makes all the difference. Over 225 days in — though the Notion MCP setup is only about a month old — I feel like I can keep this going for a long time to come.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>notionchallenge</category>
      <category>mcp</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
