<?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: Jer Crane</title>
    <description>The latest articles on DEV Community by Jer Crane (@lifeofjer).</description>
    <link>https://dev.to/lifeofjer</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%2F3868728%2Fa1e2d9c4-7665-496c-8c77-70171c1137fc.jpeg</url>
      <title>DEV Community: Jer Crane</title>
      <link>https://dev.to/lifeofjer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lifeofjer"/>
    <language>en</language>
    <item>
      <title>Accounting is losing its head — and that's a good thing</title>
      <dc:creator>Jer Crane</dc:creator>
      <pubDate>Wed, 17 Jun 2026 22:25:15 +0000</pubDate>
      <link>https://dev.to/lifeofjer/accounting-is-losing-its-head-and-thats-a-good-thing-27mm</link>
      <guid>https://dev.to/lifeofjer/accounting-is-losing-its-head-and-thats-a-good-thing-27mm</guid>
      <description>&lt;p&gt;&lt;em&gt;Why agentic software needs a headless ledger, not another dashboard&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The industry has a name for the shift now: software is losing its head. a16z's recent essay put it plainly — in an agentic world, an agent doesn't need a browser, it needs an API, context, instructions, and the ability to act. Salesforce repositioned around it. SAP, Microsoft Dynamics, and a wave of finance tools are all exposing MCP servers.&lt;/p&gt;

&lt;p&gt;Accounting is one of the last categories to get a true head transplant. Here's why it matters and what a headless ledger actually looks like.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with UI-first accounting
&lt;/h2&gt;

&lt;p&gt;QuickBooks, Xero, and NetSuite were built for a human sitting in front of a screen. Their APIs came later, bolted onto a data model designed for that UI. That's why integrating them programmatically is painful: rigid schemas, rate limits tuned for humans, and OAuth flows that assume a person clicking "Allow."&lt;/p&gt;

&lt;p&gt;When you put an AI agent in the loop, those seams show immediately. The agent has to reverse-engineer a data model that was never meant to be the product.&lt;/p&gt;

&lt;h2&gt;
  
  
  What "headless" means for a ledger
&lt;/h2&gt;

&lt;p&gt;A headless ledger flips the order of operations. The accounting engine — double-entry, multi-entity, consolidated financials — is the product. The interface is whatever you build on top, or no interface at all.&lt;/p&gt;

&lt;p&gt;For Crane Ledger, that means three ways in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;REST&lt;/strong&gt; for straightforward operations in any language.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GraphQL&lt;/strong&gt; for complex reports and multi-entity relationships, pulling exactly the data you need.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP&lt;/strong&gt; so an agent (Claude, Cursor, Windsurf) can create journal entries, query balances, and run reports natively — no UI to scrape.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why MCP changes the math
&lt;/h2&gt;

&lt;p&gt;The new MCP spec release candidate (2026-07-28) moves to a stateless HTTP core — any request can land on any server instance, no sticky sessions. That makes a financial MCP server cheap to scale and easy to deploy behind ordinary infrastructure. Combined with OAuth-aligned authorization, it's finally production-grade for finance data.&lt;/p&gt;

&lt;p&gt;The aggregators (Apideck, et al.) are racing to wrap QuickBooks and Xero in a unified MCP layer. That's useful if your books already live there. But it inherits the UI-first data model underneath. A native, API-first ledger doesn't have a head to lose in the first place.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's live — 84 tools, one key
&lt;/h2&gt;

&lt;p&gt;Crane Ledger's MCP server is a remote Streamable HTTP endpoint exposing &lt;strong&gt;84 tools&lt;/strong&gt; across the full accounting lifecycle: accounts, transactions (post/reverse), trial balance, balance sheet, income statement, invoices, bills, contacts, transfers, multi-entity consolidation, multi-currency, and reconciliations.&lt;/p&gt;

&lt;p&gt;You connect with a single Bearer key — and the org scope is derived from the key, so there's no &lt;code&gt;organization_id&lt;/code&gt; to pass around:&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 crane-ledger https://api.craneledger.ai/mcp &lt;span class="nt"&gt;--header&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer ha_live_..."&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Reads are free; writes are 1–10 credits (1 credit = $0.01). New accounts get 500 free credits on signup.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who this is for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Developers replacing or extending QuickBooks with a custom interface.&lt;/li&gt;
&lt;li&gt;Niche industry builders (farming, construction, real estate) who need accounting that matches how the business actually works.&lt;/li&gt;
&lt;li&gt;Multi-entity operators running consolidated financials across sub-orgs.&lt;/li&gt;
&lt;li&gt;Anyone giving an AI agent the ability to read and write financial data without a brittle scraping layer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're building in this space, I'd genuinely like to hear what's working and what's missing. Crane Ledger is at &lt;a href="https://craneledger.ai" rel="noopener noreferrer"&gt;https://craneledger.ai&lt;/a&gt; — docs at &lt;a href="https://craneledger.ai/docs/mcp" rel="noopener noreferrer"&gt;https://craneledger.ai/docs/mcp&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>accounting</category>
      <category>api</category>
    </item>
    <item>
      <title>I built a headless accounting API — REST, GraphQL &amp; MCP for AI builders</title>
      <dc:creator>Jer Crane</dc:creator>
      <pubDate>Thu, 09 Apr 2026 00:44:33 +0000</pubDate>
      <link>https://dev.to/lifeofjer/i-built-a-headless-accounting-api-rest-graphql-mcp-for-ai-builders-27kg</link>
      <guid>https://dev.to/lifeofjer/i-built-a-headless-accounting-api-rest-graphql-mcp-for-ai-builders-27kg</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Every accounting system forces you into their UI. For developers building products, this is a non-starter. You can't embed QuickBooks into your app. You can't build a farming-specific accounting UI. You can't run consolidated financials across 20 LLCs with a tool designed for a single small business.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://craneledger.ai" rel="noopener noreferrer"&gt;Crane Ledger&lt;/a&gt; is a headless accounting API — a full double-entry accounting engine you access via REST, GraphQL, or MCP. No UI attached.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three protocols
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;REST API&lt;/strong&gt; — Traditional endpoints for accounting operations. CRUD for accounts, transactions, journal entries.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GraphQL&lt;/strong&gt; — Flexible queries for complex financial reports. Pull exactly the data you need.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MCP Protocol&lt;/strong&gt; — This is the fun one. Give Claude, Cursor, or any MCP-compatible AI assistant native access to your accounting engine. Natural language accounting:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Create a journal entry for the $5,000 rent payment"&lt;/li&gt;
&lt;li&gt;"Show me the P&amp;amp;L for Q1"&lt;/li&gt;
&lt;li&gt;"Run a consolidated balance sheet across all my entities"&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Multi-entity support
&lt;/h2&gt;

&lt;p&gt;Sub-organizations with master billing, private data isolation between orgs, and pass-through financials for owned entities. Run consolidated balance sheets and income statements at the top level.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who it's for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Developers vibe-coding a product who need accounting without building it from scratch&lt;/li&gt;
&lt;li&gt;SaaS companies embedding financial features&lt;/li&gt;
&lt;li&gt;Real estate investors managing multiple LLCs&lt;/li&gt;
&lt;li&gt;Anyone building a niche accounting system (farming, construction, healthcare)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Pricing
&lt;/h2&gt;

&lt;p&gt;Credit-based — you pay for what you use. No seat licenses.&lt;/p&gt;

&lt;h2&gt;
  
  
  Docs
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://craneledger.ai/docs" rel="noopener noreferrer"&gt;craneledger.ai/docs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love feedback from anyone who's hit this problem before.&lt;/p&gt;

</description>
      <category>api</category>
      <category>webdev</category>
      <category>fintech</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
