Add OpenAccountants partner plugin (partner-built/openaccountants)#276
Add OpenAccountants partner plugin (partner-built/openaccountants)#276michaelcutajar1995 wants to merge 1 commit into
Conversation
OpenAccountants gives Claude verified tax & accounting skills for 190+ jurisdictions (every country + US state + Canadian province), with every answer linked to a named licensed accountant. The plugin is a thin router to the hosted OpenAccountants MCP server (https://www.openaccountants.com/api/mcp), which currently exposes 11 tools and 882 published skills — kept current with annual rate refreshes, post-legislative updates, and IRS Revenue Procedure releases. What makes this differentiated for Cowork and Claude Code users: - Country-verified sign-offs. Each jurisdiction is signed by a named licensed accountant whose credential and Calendly link are published. Michael Cutajar CPA for Malta; Werner Britz CA(SA) for South Africa; the network is growing. - The /openaccountants:review slash command. Most AI tax workflows end with "have a professional review before filing." This plugin turns that closing line into a real booking: it captures the working paper Claude produced, routes it to the named lead verifier for the user's jurisdiction, logs the scenario server-side so the accountant sees real context, and returns a Calendly URL. No client-accountant relationship until both sides sign an engagement letter. - Per-jurisdiction and per-topic variants. OpenAccountants also publishes a separate marketplace (openaccountants/marketplace) with 83 specialised plugins — install just what you need (openaccountants-mt, openaccountants-us-ca, openaccountants-crypto-tax, etc.). Slash commands shipped: /start, /return, /vat, /formation, /compare, /rates, /review. Open source skills repo: github.com/openaccountants/openaccountants. Plugin marketplace: github.com/openaccountants/marketplace.
|
@mattpic-ant @tobinsouth, quick context on why this might be especially relevant for the The Anthropic small-business plugin nails the QuickBooks/HubSpot/Docusign side of running an SMB (operations, finance basics, marketing). The wall a real US sole prop hits next is taxes (Schedule C/SE, 1099s, state nexus, quarterly estimated payments), and training-data rates drift fast (so when an LLM answers "what's my 2025 401k limit" it tends to give the 2023 number). OpenAccountants slots in beside SMB cleanly (same MCP shape, same plugin shape, no overlap with what you've already got). When the small-business plugin says "have your accountant review", Happy to do whatever makes this most useful (a small business-scoped subset of OpenAccountants, deeper integration with the existing |
Summary
Adds OpenAccountants under
partner-built/. It gives Claude verified tax & accounting skills for 190+ jurisdictions (every country + US state + Canadian province), with every answer linked to a named licensed accountant.What it ships
start,list_jurisdictions,list_skills,list_verifiers), skill access (get_skill,get_skill_sections,search_skills), tax intelligence (get_rates,compare_jurisdictions), and the human handoff (request_accountant_review,submit_feedback)/start,/return,/vat,/formation,/compare,/rates,/reviewWhy it's a fit for the marketplace
Anthropic's
small-business/andfinance/plugins surface a real gap: when the user is filing a real return or making a tax decision, they hit a "now talk to an accountant" wall. There's no path inside the AI for which accountant.OpenAccountants closes that. The
/reviewslash command captures the working paper Claude just produced, routes it to the named lead verifier for the user's jurisdiction, and returns a Calendly URL. The verifier sees the scenario + the worksheet before the call instead of walking in blind.Trust model
Format
Mirrors the existing
partner-built/apolloshape:```
partner-built/openaccountants/
├── .claude-plugin/plugin.json
├── .mcp.json # http transport, openaccountants.com/api/mcp
├── LICENSE # MIT
├── README.md
├── commands/ # 7 slash commands
└── skills/openaccountants/SKILL.md
```
Companion marketplace
For users who want a plugin pre-scoped to one country or one topic, OpenAccountants also publishes openaccountants/marketplace — 83 specialised plugins (Malta, US-CA, UK, Germany, crypto, transfer pricing, SaaS vertical, etc.) all routing to the same hosted MCP backend. The plugin in this PR is the base / global entry point; the marketplace is the per-jurisdiction expansion.
Test plan
claude plugin marketplace add anthropics/knowledge-work-pluginsclaude plugin install openaccountants@knowledge-work-pluginsstartandget_skill/openaccountants:reviewreturns the named verifier (e.g. Michael Cutajar CPA for Malta, Werner Britz CA(SA) for South Africa) plus a Calendly URLrequest_accountant_reviewlands server-side (admin dashboard at openaccountants.com)Links
Happy to make any changes the maintainers want — scope of slash commands, README framing, MCP server expectations, anything.