<?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: Eugen</title>
    <description>The latest articles on DEV Community by Eugen (@ievgen_ch).</description>
    <link>https://dev.to/ievgen_ch</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%2F3892534%2F191c35a6-efdd-44fb-8621-00165b07905b.jpg</url>
      <title>DEV Community: Eugen</title>
      <link>https://dev.to/ievgen_ch</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ievgen_ch"/>
    <language>en</language>
    <item>
      <title>We Built 118 MCP Tools. Here's What AI Actually Does With Them</title>
      <dc:creator>Eugen</dc:creator>
      <pubDate>Wed, 22 Apr 2026 14:00:16 +0000</pubDate>
      <link>https://dev.to/ievgen_ch/we-built-118-mcp-tools-heres-what-ai-actually-does-with-them-4pdh</link>
      <guid>https://dev.to/ievgen_ch/we-built-118-mcp-tools-heres-what-ai-actually-does-with-them-4pdh</guid>
      <description>&lt;p&gt;A couple of months ago we finished exposing our SaaS through an MCP server. It now has 118 tools across 12 domains. I want to show what an AI actually does with all of that, because it's not really what we designed for.&lt;/p&gt;

&lt;p&gt;PaperLink is a document-sharing and accounting SaaS. You connect Claude, ChatGPT, or any MCP client with one command and start talking to your data. Five examples from real conversations.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. A receipt photo becomes 6 categorized transactions
&lt;/h2&gt;

&lt;p&gt;Someone snaps a photo of a coffee-shop receipt. The AI reads six line items, calls &lt;code&gt;create-transactions&lt;/code&gt; once with all six in a batch, assigns categories, and asks for confirmation before it saves anything. One tool call instead of six form submissions.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. "Show me invoices stuck in SENT for 30+ days"
&lt;/h2&gt;

&lt;p&gt;We built &lt;code&gt;list-invoices&lt;/code&gt; so the UI could show a list of invoices. It takes filters as arguments, and those filters ended up doing more than we expected.&lt;/p&gt;

&lt;p&gt;The AI composed a query we never built a UI for: &lt;code&gt;status=SENT&lt;/code&gt;, sent over 30 days ago, status history never transitioned to OVERDUE. Five invoices came back that should have auto-transitioned and didn't. That's a bug we had been shipping without noticing.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. "Upload this contract, password-protect it, expire Friday"
&lt;/h2&gt;

&lt;p&gt;Three tools run from one sentence:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;create-file-from-source&lt;/code&gt; uploads the file&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;create-link&lt;/code&gt; generates the protected share link&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;update-link&lt;/code&gt; sets the expiration date&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The AI chains them, then asks "who should get access?" before sending.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. "Transfer $500 from Wise to Mono"
&lt;/h2&gt;

&lt;p&gt;Two accounts, different currencies. The AI calls &lt;code&gt;get-exchange-rates&lt;/code&gt;, works out the destination amount, then calls &lt;code&gt;create-transfer&lt;/code&gt; with both amounts paired and waits for confirmation. A transfer that takes about 45 seconds on a form takes roughly 10 seconds to type.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. "Who actually read my proposal?"
&lt;/h2&gt;

&lt;p&gt;The AI runs &lt;code&gt;get-link-analytics&lt;/code&gt;, then &lt;code&gt;get-top-viewers&lt;/code&gt;, then &lt;code&gt;get-page-heatmap&lt;/code&gt;, and summarizes: "3 of 5 recipients opened it. One spent 6 minutes on the pricing page. The others skimmed." You get the answer without opening a dashboard.&lt;/p&gt;

&lt;h2&gt;
  
  
  The full map
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Domain&lt;/th&gt;
&lt;th&gt;Tools&lt;/th&gt;
&lt;th&gt;Examples&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Accounting &amp;amp; transactions&lt;/td&gt;
&lt;td&gt;20&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-transaction&lt;/code&gt;, &lt;code&gt;create-transfer&lt;/code&gt;, &lt;code&gt;get-category-breakdown&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Files &amp;amp; folders&lt;/td&gt;
&lt;td&gt;14&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;upload-file-from-url&lt;/code&gt;, &lt;code&gt;create-folder&lt;/code&gt;, &lt;code&gt;archive-file&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Clients &amp;amp; companies&lt;/td&gt;
&lt;td&gt;14&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-client&lt;/code&gt;, &lt;code&gt;create-company&lt;/code&gt;, &lt;code&gt;archive-company&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Document sharing &amp;amp; analytics&lt;/td&gt;
&lt;td&gt;12&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-link&lt;/code&gt;, &lt;code&gt;get-page-heatmap&lt;/code&gt;, &lt;code&gt;get-top-viewers&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Invoicing &amp;amp; payments&lt;/td&gt;
&lt;td&gt;12&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-invoice&lt;/code&gt;, &lt;code&gt;record-invoice-payment&lt;/code&gt;, &lt;code&gt;change-invoice-status&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Categories &amp;amp; accounts&lt;/td&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-category&lt;/code&gt;, &lt;code&gt;create-financial-account&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Estimates&lt;/td&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-estimate&lt;/code&gt;, &lt;code&gt;convert-estimate-to-invoice&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Products &amp;amp; services&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-product&lt;/code&gt;, &lt;code&gt;update-product&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Recurring transactions&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;create-recurring-transaction&lt;/code&gt;, &lt;code&gt;get-recurring-forecast&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Team &amp;amp; permissions&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;invite-member&lt;/code&gt;, &lt;code&gt;change-member-role&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Currency &amp;amp; exchange&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;get-exchange-rates&lt;/code&gt;, &lt;code&gt;add-team-currency&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI insights &amp;amp; billing&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;generate-document-insight&lt;/code&gt;, &lt;code&gt;get-subscription-info&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Read, write, and delete tools live in separate files so OAuth scopes can stay granular.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it in 10 seconds
&lt;/h2&gt;

&lt;p&gt;Sign up for a free account, then run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add &lt;span class="nt"&gt;--transport&lt;/span&gt; http paperlink https://mcp.paperlink.online/api/mcp/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The server is remote, so you get an OAuth consent screen with a team picker and scope checkboxes. Disconnect anytime from the app.&lt;/p&gt;

&lt;p&gt;Next post: how we organized 118 tools across 19 files without writing the same boilerplate 118 times.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>typescript</category>
      <category>saas</category>
    </item>
  </channel>
</rss>
