Integrations

Microbooks is designed to automate as much bookkeeping work as possible — by connecting the ledger to the places where your business actually happens.

Claude & AI assistants (MCP)

Available now

The Microbooks MCP server lets Claude Desktop — or any assistant that speaks the Model Context Protocol — work with your books directly: look up accounts, pull financial reports, and record sales, purchases and payments in plain language.

It is built to be safe by default: transactions are drafted rather than posted unless you say otherwise, every write supports a dry-run preview, and the server authenticates with a personal access token you can scope and revoke from your dashboard at any time.

Create a token, drop the snippet into claude_desktop_config.json, and start asking questions about your books.

claude_desktop_config.json
{
  "mcpServers": {
    "microbooks": {
      "command": "metafrasi-mcp",
      "env": {
        "MICROBOOKS_API_URL": "https://api.microbooks.io",
        "MICROBOOKS_TOKEN": "<personal access token>"
      }
    }
  }
}

Build your own integration (OAuth 2.1)

Available now

Microbooks is a full OAuth 2.1 authorization server. Register a client — from your dashboard or programmatically via RFC 7591 dynamic client registration — and your app can request scoped access to any Microbooks user's books with authorization code + PKCE and rotating refresh tokens.

Scopes cover reading and writing books and payments separately, so users grant your app exactly what it needs and nothing more. Tokens can be revoked (RFC 7009) and keys are published via JWKS for verification.

dynamic client registration
POST /oauth/register
Content-Type: application/json

{
  "client_name": "Acme Books Sync",
  "redirect_uris": ["https://acme.example/callback"],
  "grant_types": ["authorization_code", "refresh_token"],
  "token_endpoint_auth_method": "none"
}

E-commerce platforms

Coming soon

Direct integrations with the major e-commerce providers — Shopify, Etsy, WooCommerce, Amazon and more — are planned, so sales flow into your books without any glue code. Have a particular store you'd like us to prioritise? We're just starting out and would love to hear from you: drop a line to feedback@microbooks.io and we'll get back to you to discuss your pain points as soon as possible.