accountingqb 3.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- accountingqb-3.0.0/.gitignore +37 -0
- accountingqb-3.0.0/.mcpbignore +8 -0
- accountingqb-3.0.0/LICENSE +45 -0
- accountingqb-3.0.0/PKG-INFO +111 -0
- accountingqb-3.0.0/README.md +81 -0
- accountingqb-3.0.0/accountingqb-3.0.0.mcpb +0 -0
- accountingqb-3.0.0/icon.png +0 -0
- accountingqb-3.0.0/manifest.json +472 -0
- accountingqb-3.0.0/pyproject.toml +46 -0
- accountingqb-3.0.0/src/accountingqb/__init__.py +3 -0
- accountingqb-3.0.0/src/accountingqb/__main__.py +10 -0
- accountingqb-3.0.0/src/accountingqb/server.py +7020 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Credentials — NEVER commit these
|
|
2
|
+
.env
|
|
3
|
+
.env.*
|
|
4
|
+
*.env
|
|
5
|
+
credentials.json
|
|
6
|
+
tokens.json
|
|
7
|
+
.qb_data/
|
|
8
|
+
|
|
9
|
+
# Python
|
|
10
|
+
__pycache__/
|
|
11
|
+
*.py[cod]
|
|
12
|
+
*$py.class
|
|
13
|
+
*.so
|
|
14
|
+
*.egg-info/
|
|
15
|
+
dist/
|
|
16
|
+
build/
|
|
17
|
+
*.egg
|
|
18
|
+
|
|
19
|
+
# Virtual environments
|
|
20
|
+
venv/
|
|
21
|
+
.venv/
|
|
22
|
+
env/
|
|
23
|
+
|
|
24
|
+
# IDE
|
|
25
|
+
.vscode/
|
|
26
|
+
.idea/
|
|
27
|
+
*.swp
|
|
28
|
+
*.swo
|
|
29
|
+
*~
|
|
30
|
+
|
|
31
|
+
# OS
|
|
32
|
+
.DS_Store
|
|
33
|
+
Thumbs.db
|
|
34
|
+
|
|
35
|
+
# Logs
|
|
36
|
+
*.log
|
|
37
|
+
.qb_refresh_token
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
AccountingQB Commercial License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 Vaspera Capital
|
|
4
|
+
|
|
5
|
+
This software is proprietary and requires a valid license key for use.
|
|
6
|
+
|
|
7
|
+
LICENSE TERMS:
|
|
8
|
+
|
|
9
|
+
1. LICENSE GRANT
|
|
10
|
+
Subject to payment of applicable fees and compliance with these terms,
|
|
11
|
+
Vaspera Capital grants you a limited, non-exclusive, non-transferable
|
|
12
|
+
license to use AccountingQB for your business purposes.
|
|
13
|
+
|
|
14
|
+
2. RESTRICTIONS
|
|
15
|
+
You may not:
|
|
16
|
+
- Redistribute, sublicense, or resell the software
|
|
17
|
+
- Modify, reverse engineer, or create derivative works
|
|
18
|
+
- Remove or alter any proprietary notices
|
|
19
|
+
- Use the software without a valid license key
|
|
20
|
+
|
|
21
|
+
3. SUBSCRIPTION
|
|
22
|
+
This software is licensed on a subscription basis. Your license is
|
|
23
|
+
valid for as long as your subscription remains active.
|
|
24
|
+
|
|
25
|
+
4. DATA PRIVACY
|
|
26
|
+
- Your financial data is processed locally by the MCP server
|
|
27
|
+
- OAuth tokens are stored securely (encrypted at rest)
|
|
28
|
+
- We do not access, store, or process your QuickBooks data
|
|
29
|
+
- See https://accountingqb.com/privacy for full privacy policy
|
|
30
|
+
|
|
31
|
+
5. DISCLAIMER
|
|
32
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
33
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
34
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
35
|
+
|
|
36
|
+
6. LIMITATION OF LIABILITY
|
|
37
|
+
IN NO EVENT SHALL VASPERA CAPITAL BE LIABLE FOR ANY CLAIM, DAMAGES
|
|
38
|
+
OR OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
|
|
39
|
+
|
|
40
|
+
7. TERMINATION
|
|
41
|
+
This license terminates automatically if you fail to comply with
|
|
42
|
+
these terms or if your subscription expires.
|
|
43
|
+
|
|
44
|
+
For questions, contact: support@vasperacapital.com
|
|
45
|
+
Website: https://accountingqb.com
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: accountingqb
|
|
3
|
+
Version: 3.0.0
|
|
4
|
+
Summary: AccountingQB — 91 AI tools connecting Claude to QuickBooks Online
|
|
5
|
+
Project-URL: Homepage, https://accountingqb.com
|
|
6
|
+
Project-URL: Documentation, https://accountingqb.com/docs
|
|
7
|
+
Project-URL: Repository, https://github.com/RCOLKITT/AccountingQB-MCP
|
|
8
|
+
Author-email: AccountingQB <support@accountingqb.com>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: accounting,ai,bookkeeping,claude,mcp,quickbooks
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: MacOS
|
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: Office/Business :: Financial :: Accounting
|
|
24
|
+
Requires-Python: >=3.10
|
|
25
|
+
Requires-Dist: cryptography>=41.0.0
|
|
26
|
+
Requires-Dist: httpx>=0.27.0
|
|
27
|
+
Requires-Dist: mcp[cli]>=1.0.0
|
|
28
|
+
Requires-Dist: pydantic>=2.0.0
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
|
|
31
|
+
# AccountingQB — QuickBooks for Claude
|
|
32
|
+
|
|
33
|
+
91 AI tools connecting Claude to your QuickBooks Online. Reports, reconciliation, tax prep, anomaly detection — all through natural conversation.
|
|
34
|
+
|
|
35
|
+
## Features
|
|
36
|
+
|
|
37
|
+
- **15 Reports & Analysis** — P&L, Balance Sheet, Cash Flow, Trial Balance, AR/AP Aging, and more
|
|
38
|
+
- **9 Tax Prep Tools** — Schedule C, deduction finder, quarterly estimates, 1099 reporting, depreciation
|
|
39
|
+
- **15 Create & Write Tools** — Invoices, expenses, bills, journal entries, deposits, transfers
|
|
40
|
+
- **8 Smart Bookkeeping** — Auto-categorization, duplicate detection, anomaly flagging, unknown vendor cleanup
|
|
41
|
+
- **4 Cash Flow Tools** — Runway calculator, burn rate, cash flow forecasting
|
|
42
|
+
|
|
43
|
+
## Getting Started
|
|
44
|
+
|
|
45
|
+
1. **Get a license key** at [accountingqb.com](https://accountingqb.com)
|
|
46
|
+
2. **Install this extension** in Claude Desktop
|
|
47
|
+
3. **Enter your license key** when prompted
|
|
48
|
+
4. **Connect QuickBooks** — click the link when Claude prompts you
|
|
49
|
+
5. **Start asking questions** like "Show me my P&L for last quarter"
|
|
50
|
+
|
|
51
|
+
## Privacy Policy
|
|
52
|
+
|
|
53
|
+
AccountingQB is designed with privacy as a core principle.
|
|
54
|
+
|
|
55
|
+
### Data Collection
|
|
56
|
+
- **License Key**: We validate your license key against our servers
|
|
57
|
+
- **OAuth Tokens**: Stored securely on our servers (encrypted at rest) to enable QuickBooks connectivity
|
|
58
|
+
- **Usage Metrics**: Anonymous usage statistics for product improvement (no financial data)
|
|
59
|
+
|
|
60
|
+
### Data NOT Collected
|
|
61
|
+
- **Financial Data**: Your QuickBooks data is never transmitted to or stored on our servers
|
|
62
|
+
- **Transaction Details**: All financial queries are processed directly between Claude and QuickBooks
|
|
63
|
+
- **Personal Information**: Beyond your email for license management, we collect no personal data
|
|
64
|
+
|
|
65
|
+
### Data Flow
|
|
66
|
+
1. Your prompts go to Claude (Anthropic)
|
|
67
|
+
2. Claude calls AccountingQB tools running locally
|
|
68
|
+
3. Tools fetch data directly from QuickBooks API
|
|
69
|
+
4. Results are returned to Claude
|
|
70
|
+
5. Our servers are only involved for license validation and OAuth token storage
|
|
71
|
+
|
|
72
|
+
### Security
|
|
73
|
+
- OAuth tokens encrypted at rest using AES-256
|
|
74
|
+
- HTTPS for all API communications
|
|
75
|
+
- No plaintext credential storage
|
|
76
|
+
- Regular security audits
|
|
77
|
+
|
|
78
|
+
### Your Rights
|
|
79
|
+
- Request deletion of your data at any time
|
|
80
|
+
- Export your connected company list
|
|
81
|
+
- Revoke QuickBooks access from the dashboard
|
|
82
|
+
|
|
83
|
+
For the complete privacy policy, visit: https://accountingqb.com/privacy
|
|
84
|
+
|
|
85
|
+
Contact: support@vasperacapital.com
|
|
86
|
+
|
|
87
|
+
## Example Prompts
|
|
88
|
+
|
|
89
|
+
- "What's my burn rate and runway?"
|
|
90
|
+
- "Generate my Schedule C for tax prep"
|
|
91
|
+
- "Find any duplicate transactions from last month"
|
|
92
|
+
- "Show me expenses by category for Q4"
|
|
93
|
+
- "Create an invoice for Acme Corp for $5,000 consulting"
|
|
94
|
+
- "Run my month-end close checklist"
|
|
95
|
+
|
|
96
|
+
## Support
|
|
97
|
+
|
|
98
|
+
- Email: support@vasperacapital.com
|
|
99
|
+
- Website: [accountingqb.com](https://accountingqb.com)
|
|
100
|
+
|
|
101
|
+
## Pricing
|
|
102
|
+
|
|
103
|
+
- **Solopreneur** — $39/mo (1 company)
|
|
104
|
+
- **Business** — $99/mo (up to 3 companies)
|
|
105
|
+
- **Firm** — $299/mo (unlimited companies)
|
|
106
|
+
|
|
107
|
+
All plans include a 14-day free trial with full access to all 91 tools.
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
Built by [Vaspera Capital](https://vasperacapital.com)
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# AccountingQB — QuickBooks for Claude
|
|
2
|
+
|
|
3
|
+
91 AI tools connecting Claude to your QuickBooks Online. Reports, reconciliation, tax prep, anomaly detection — all through natural conversation.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **15 Reports & Analysis** — P&L, Balance Sheet, Cash Flow, Trial Balance, AR/AP Aging, and more
|
|
8
|
+
- **9 Tax Prep Tools** — Schedule C, deduction finder, quarterly estimates, 1099 reporting, depreciation
|
|
9
|
+
- **15 Create & Write Tools** — Invoices, expenses, bills, journal entries, deposits, transfers
|
|
10
|
+
- **8 Smart Bookkeeping** — Auto-categorization, duplicate detection, anomaly flagging, unknown vendor cleanup
|
|
11
|
+
- **4 Cash Flow Tools** — Runway calculator, burn rate, cash flow forecasting
|
|
12
|
+
|
|
13
|
+
## Getting Started
|
|
14
|
+
|
|
15
|
+
1. **Get a license key** at [accountingqb.com](https://accountingqb.com)
|
|
16
|
+
2. **Install this extension** in Claude Desktop
|
|
17
|
+
3. **Enter your license key** when prompted
|
|
18
|
+
4. **Connect QuickBooks** — click the link when Claude prompts you
|
|
19
|
+
5. **Start asking questions** like "Show me my P&L for last quarter"
|
|
20
|
+
|
|
21
|
+
## Privacy Policy
|
|
22
|
+
|
|
23
|
+
AccountingQB is designed with privacy as a core principle.
|
|
24
|
+
|
|
25
|
+
### Data Collection
|
|
26
|
+
- **License Key**: We validate your license key against our servers
|
|
27
|
+
- **OAuth Tokens**: Stored securely on our servers (encrypted at rest) to enable QuickBooks connectivity
|
|
28
|
+
- **Usage Metrics**: Anonymous usage statistics for product improvement (no financial data)
|
|
29
|
+
|
|
30
|
+
### Data NOT Collected
|
|
31
|
+
- **Financial Data**: Your QuickBooks data is never transmitted to or stored on our servers
|
|
32
|
+
- **Transaction Details**: All financial queries are processed directly between Claude and QuickBooks
|
|
33
|
+
- **Personal Information**: Beyond your email for license management, we collect no personal data
|
|
34
|
+
|
|
35
|
+
### Data Flow
|
|
36
|
+
1. Your prompts go to Claude (Anthropic)
|
|
37
|
+
2. Claude calls AccountingQB tools running locally
|
|
38
|
+
3. Tools fetch data directly from QuickBooks API
|
|
39
|
+
4. Results are returned to Claude
|
|
40
|
+
5. Our servers are only involved for license validation and OAuth token storage
|
|
41
|
+
|
|
42
|
+
### Security
|
|
43
|
+
- OAuth tokens encrypted at rest using AES-256
|
|
44
|
+
- HTTPS for all API communications
|
|
45
|
+
- No plaintext credential storage
|
|
46
|
+
- Regular security audits
|
|
47
|
+
|
|
48
|
+
### Your Rights
|
|
49
|
+
- Request deletion of your data at any time
|
|
50
|
+
- Export your connected company list
|
|
51
|
+
- Revoke QuickBooks access from the dashboard
|
|
52
|
+
|
|
53
|
+
For the complete privacy policy, visit: https://accountingqb.com/privacy
|
|
54
|
+
|
|
55
|
+
Contact: support@vasperacapital.com
|
|
56
|
+
|
|
57
|
+
## Example Prompts
|
|
58
|
+
|
|
59
|
+
- "What's my burn rate and runway?"
|
|
60
|
+
- "Generate my Schedule C for tax prep"
|
|
61
|
+
- "Find any duplicate transactions from last month"
|
|
62
|
+
- "Show me expenses by category for Q4"
|
|
63
|
+
- "Create an invoice for Acme Corp for $5,000 consulting"
|
|
64
|
+
- "Run my month-end close checklist"
|
|
65
|
+
|
|
66
|
+
## Support
|
|
67
|
+
|
|
68
|
+
- Email: support@vasperacapital.com
|
|
69
|
+
- Website: [accountingqb.com](https://accountingqb.com)
|
|
70
|
+
|
|
71
|
+
## Pricing
|
|
72
|
+
|
|
73
|
+
- **Solopreneur** — $39/mo (1 company)
|
|
74
|
+
- **Business** — $99/mo (up to 3 companies)
|
|
75
|
+
- **Firm** — $299/mo (unlimited companies)
|
|
76
|
+
|
|
77
|
+
All plans include a 14-day free trial with full access to all 91 tools.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
Built by [Vaspera Capital](https://vasperacapital.com)
|
|
Binary file
|
|
Binary file
|