<?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: Paul Leo</title>
    <description>The latest articles on DEV Community by Paul Leo (@paulleo).</description>
    <link>https://dev.to/paulleo</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%2F3807095%2Fd84a146f-1b80-4104-862d-6acf37b53030.jpeg</url>
      <title>DEV Community: Paul Leo</title>
      <link>https://dev.to/paulleo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/paulleo"/>
    <language>en</language>
    <item>
      <title>How I Connected 11 Work Tools to My AI Agent with One API Key</title>
      <dc:creator>Paul Leo</dc:creator>
      <pubDate>Thu, 05 Mar 2026 05:18:32 +0000</pubDate>
      <link>https://dev.to/paulleo/how-i-connected-11-work-tools-to-my-ai-agent-with-one-api-key-pc</link>
      <guid>https://dev.to/paulleo/how-i-connected-11-work-tools-to-my-ai-agent-with-one-api-key-pc</guid>
      <description>&lt;h2&gt;
  
  
  The Architecture
&lt;/h2&gt;

&lt;p&gt;All API calls route through MorphixAI's proxy. You authenticate each platform once via OAuth on &lt;a href="https://morphix.app/connections" rel="noopener noreferrer"&gt;morphix.app/connections&lt;/a&gt;, and the proxy handles token refresh, rate limiting, and error mapping.&lt;/p&gt;

&lt;h2&gt;
  
  
  Setup in 60 Seconds
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install the plugin&lt;/span&gt;
openclaw plugins &lt;span class="nb"&gt;install &lt;/span&gt;openclaw-morphixai

&lt;span class="c"&gt;# Add your API key&lt;/span&gt;
&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"MORPHIXAI_API_KEY=mk_your_key_here"&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&amp;gt;&lt;/span&gt; ~/.openclaw/.env

&lt;span class="c"&gt;# Restart OpenClaw&lt;/span&gt;
openclaw gateway restart
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. No per-service config files. No token juggling.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Can It Do?
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Daily Standup -- My Favorite Skill
&lt;/h3&gt;

&lt;p&gt;Every morning I type &lt;code&gt;standup&lt;/code&gt; and get a morning briefing that aggregates your pending GitLab MRs, Jira issues due this week, unread emails, and today's calendar events. One prompt replaces 15 minutes of tab-switching.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cross-Platform Workflows
&lt;/h3&gt;

&lt;p&gt;The real power is combining tools. Ask your agent to "Create a GitLab MR for Jira issue TANKA-1234" and it reads the Jira issue, creates a branch, opens the MR with context, and transitions the Jira status automatically.&lt;/p&gt;

&lt;h3&gt;
  
  
  Available Tools
&lt;/h3&gt;

&lt;p&gt;12 tools covering GitLab, GitHub, Jira, Confluence, Outlook Mail, Outlook Calendar, MS To Do, Gmail, Google Tasks, Notion, Figma, and MorphixAI account management.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a Proxy?
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;One key vs. eleven&lt;/strong&gt; -- Simpler secrets management&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OAuth handled&lt;/strong&gt; -- Token refresh managed centrally&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unified error handling&lt;/strong&gt; -- Consistent format across platforms&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rate limiting&lt;/strong&gt; -- The proxy manages per-platform limits&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt; -- Your tokens live on MorphixAI's servers, not in config files&lt;/li&gt;
&lt;/ol&gt;

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

&lt;p&gt;We're planning integrations for Feishu (Lark), DingTalk, WeCom, and Gitee.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get Started
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;openclaw plugins &lt;span class="nb"&gt;install &lt;/span&gt;openclaw-morphixai
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.npmjs.com/package/openclaw-morphixai" rel="noopener noreferrer"&gt;npm&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Morphicai/openclaw-morphixai" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; (MIT)&lt;/li&gt;
&lt;li&gt;&lt;a href="https://clawhub.ai/u/paul-leo" rel="noopener noreferrer"&gt;ClawHub Skills&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://morphix.app/api-keys" rel="noopener noreferrer"&gt;Get API Key&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Questions? Feedback? &lt;a href="https://github.com/Morphicai/openclaw-morphixai/issues" rel="noopener noreferrer"&gt;Open an issue&lt;/a&gt; or drop a comment below.&lt;/p&gt;

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