npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@thriveventurelabs/accountsos-mcp

v0.2.3

Published

MCP server for AccountsOS - Chat with your books from Claude Desktop

Readme

AccountsOS MCP Server

Give Claude Desktop access to your UK accounting data via the Model Context Protocol (MCP).

npm: https://www.npmjs.com/package/@thriveventurelabs/accountsos-mcp

Installation

Option 1: Global Install (Recommended)

npm install -g @thriveventurelabs/accountsos-mcp

Then add to Claude Desktop config:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "accountsos": {
      "command": "accountsos-mcp",
      "args": [],
      "env": {
        "ACCOUNTSOS_API_KEY": "your-api-key-here"
      }
    }
  }
}

Option 2: Using npx

{
  "mcpServers": {
    "accountsos": {
      "command": "npx",
      "args": ["--yes", "@thriveventurelabs/accountsos-mcp@latest"],
      "env": {
        "ACCOUNTSOS_API_KEY": "your-api-key-here"
      }
    }
  }
}

Get your API key from AccountsOS Settings.

Available Tools

Read Operations

| Tool | Description | |------|-------------| | get_transactions | Query transactions with filters (date, category, amount, search) | | get_balance | Get current account balance(s) | | get_deadlines | View upcoming tax and filing deadlines | | get_vat_summary | Get VAT summary for any quarter | | search_documents | Search uploaded receipts and invoices | | list_categories | List available UK GAAP transaction categories |

Write Operations

| Tool | Description | |------|-------------| | create_transaction | Create a new transaction (with auto-categorization) | | update_transaction | Update category, notes, or reconciliation status | | categorize_transaction | Get AI-suggested category for a transaction | | create_deadline | Create a new tax/filing deadline reminder |

Available Resources

| Resource | Description | |----------|-------------| | accountsos://company | Company details and settings | | accountsos://transactions | Most recent 50 transactions | | accountsos://documents | Uploaded documents | | accountsos://deadlines | Upcoming deadlines |

Example Prompts

Once connected, try asking Claude:

  • "What's my account balance?"
  • "Show me transactions from last month"
  • "When is my next VAT deadline?"
  • "How much have I spent on software subscriptions?"
  • "Create a transaction for lunch with a client, £45"
  • "What's my VAT summary for Q4 2024?"

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally (for testing)
ACCOUNTSOS_API_KEY=sk_live_xxx npm start

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ACCOUNTSOS_API_KEY | Yes | Your AccountsOS API key | | ACCOUNTSOS_BASE_URL | No | Override API base URL (default: https://accounts-os.com) |

Troubleshooting

Server disconnected

Check logs at ~/Library/Logs/Claude/mcp-server-accountsos.log

npx issues

If npx has caching issues, use global install instead:

npm install -g @thriveventurelabs/accountsos-mcp

License

MIT