<?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: Arjun</title>
    <description>The latest articles on DEV Community by Arjun (@arjun_m_10e75b369465a68b7).</description>
    <link>https://dev.to/arjun_m_10e75b369465a68b7</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%2F3578685%2F188443dc-07bb-4d1e-a4d2-f7f180b86342.png</url>
      <title>DEV Community: Arjun</title>
      <link>https://dev.to/arjun_m_10e75b369465a68b7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arjun_m_10e75b369465a68b7"/>
    <language>en</language>
    <item>
      <title>Rowboat: The open-source alternative to Notion's new custom agents with native MCP support</title>
      <dc:creator>Arjun</dc:creator>
      <pubDate>Wed, 22 Oct 2025 14:58:28 +0000</pubDate>
      <link>https://dev.to/arjun_m_10e75b369465a68b7/the-open-source-alternative-to-notions-new-custom-agents-with-native-mcp-support-2og2</link>
      <guid>https://dev.to/arjun_m_10e75b369465a68b7/the-open-source-alternative-to-notions-new-custom-agents-with-native-mcp-support-2og2</guid>
      <description>&lt;p&gt;Notion recently announced custom AI agents, but theirs only run inside Notion.&lt;/p&gt;

&lt;p&gt;We have been building &lt;strong&gt;Rowboat&lt;/strong&gt;, an open source platform for self-hosted, cross-tool, collaborative AI agents. Rowboat ships with native &lt;strong&gt;MCP&lt;/strong&gt; support as well as 500+ built-in product integrations. &lt;/p&gt;

&lt;p&gt;👉 GitHub: &lt;a href="https://github.com/rowboatlabs/rowboat" rel="noopener noreferrer"&gt;https://github.com/rowboatlabs/rowboat&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👉 Demo: &lt;a href="https://youtu.be/KZTP4xZM2DY" rel="noopener noreferrer"&gt;https://youtu.be/KZTP4xZM2DY&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh8r1pb8sx2achczxrszm.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh8r1pb8sx2achczxrszm.gif" alt="Creating a meeting-prep agent" width="600" height="337"&gt;&lt;/a&gt;&lt;/p&gt;




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

&lt;p&gt;Work rarely lives inside one app. Email, docs, knowledge bases, internal APIs, and research sources all sit in different places. Combining these for complex real-world use cases is precisely why multi-agent orchestration is required.&lt;/p&gt;

&lt;p&gt;We want agents that can:&lt;/p&gt;

&lt;p&gt;✅ Run on your own infrastructure.&lt;br&gt;
✅ Talk to any service.&lt;br&gt;
✅ Coordinate multiple agents when needed.&lt;br&gt;
✅ Remain inspectable and debuggable.&lt;br&gt;
✅ Extend through MCP for custom tools.&lt;br&gt;
✅ Avoid vendor lock-in.&lt;/p&gt;




&lt;h2&gt;
  
  
  What makes Rowboat different
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Notion Custom Agents&lt;/th&gt;
&lt;th&gt;Rowboat (OSS)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Self-hosted / local runtime&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-agent orchestration&lt;/td&gt;
&lt;td&gt;Limited&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Extensible through MCP&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Native RAG (docs and URLs)&lt;/td&gt;
&lt;td&gt;Limited&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Support local models&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Inspectable prompts and flow&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Architecture philosophy
&lt;/h2&gt;

&lt;p&gt;We think of agentic systems as a spectrum.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Side of spectrum&lt;/th&gt;
&lt;th&gt;Useful for&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Deterministic pipelines with a fixed LLM call order&lt;/td&gt;
&lt;td&gt;Repeatable workflows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fully agentic orchestration&lt;/td&gt;
&lt;td&gt;Assistants that decide how to act&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Splitting responsibilities across multiple agents reduces context pollution, makes each unit testable, and mirrors how real teams work.&lt;/p&gt;

&lt;p&gt;We ship tested agent patterns such as manager and worker roles, internal task agents, and pipelines. This avoids visual flowchart builders that become unwieldy once the system grows.&lt;/p&gt;




&lt;h2&gt;
  
  
  Some things you can build today
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Meeting prep assistants that pull from email, docs, and calendar&lt;/li&gt;
&lt;li&gt;Twitter-based market research agents&lt;/li&gt;
&lt;li&gt;Triage bots for support before a human takes over&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All self-hosted and fully under your control.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/rowboatlabs/rowboat" rel="noopener noreferrer"&gt;https://github.com/rowboatlabs/rowboat&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A star helps other builders discover it 🙌&lt;/p&gt;




&lt;h2&gt;
  
  
  Feedback
&lt;/h2&gt;

&lt;p&gt;If you self-host today, what is the biggest friction point for you: integrations, reliability (e.g., getting agents to complete complex tasks), debugging, or something else?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
