New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@thriveventurelabs/accountsos-mcp

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thriveventurelabs/accountsos-mcp

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

latest
Source
npmnpm
Version
0.3.1
Version published
Weekly downloads
13
116.67%
Maintainers
1
Weekly downloads
 
Created
Source

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

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

ToolDescription
get_transactionsQuery transactions with filters (date, category, amount, search)
get_balanceGet current account balance(s)
get_deadlinesView upcoming tax and filing deadlines
get_vat_summaryGet VAT summary for any quarter
search_documentsSearch uploaded receipts and invoices
list_categoriesList available UK GAAP transaction categories

Write Operations

ToolDescription
create_transactionCreate a new transaction (with auto-categorization)
update_transactionUpdate category, notes, or reconciliation status
categorize_transactionGet AI-suggested category for a transaction
create_deadlineCreate a new tax/filing deadline reminder

Available Resources

ResourceDescription
accountsos://companyCompany details and settings
accountsos://transactionsMost recent 50 transactions
accountsos://documentsUploaded documents
accountsos://deadlinesUpcoming 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

VariableRequiredDescription
ACCOUNTSOS_API_KEYYesYour AccountsOS API key
ACCOUNTSOS_BASE_URLNoOverride 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

Keywords

mcp

FAQs

Package last updated on 17 Sep 2026

Related posts