beeswax-mcp 1.7.0 → 2.0.0
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.
- package/README.md +1 -1
- package/dist/tools.js +2 -41
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -150,7 +150,7 @@ reports the same on demand.
|
|
|
150
150
|
| `list_themes`, `get_theme_spec`, `get_theme`, `upsert_theme` (write), `validate_theme` (write), `preview_theme`, `activate_theme` (write), `delete_theme` (write) | `/themes` (custom document themes, THEME_SPEC v1) |
|
|
151
151
|
| `list_products_services`, `get_product_service`, `create_product_service` (write), `update_product_service` (write), `delete_product_service` (write) | `/transaction_templates` |
|
|
152
152
|
| `list_manual_journals`, `get_manual_journal`, `create_manual_journal` (write), `finalise_manual_journal` (write) | `/raw_journal_entries` |
|
|
153
|
-
| `list_tax_returns`, `get_tax_return`, `get_tax_return_field_transactions`, `
|
|
153
|
+
| `list_tax_returns`, `get_tax_return`, `get_tax_return_field_transactions`, `compare_tax_returns`, `tax_return_preflight_check`, `list_tax_return_field_notes`, `get_tax_return_conversation`, `create_tax_return` (write), `repopulate_tax_return` (write), `update_tax_return_field` (write), `add_tax_return_field_note` (write), `edit_tax_return_field_note` (write), `post_tax_return_message` (write), `confirm_tax_return_section` / `unconfirm_tax_return_section` (write), `finalise_tax_return` / `unfinalise_tax_return` (write) | `/tax_returns` — the assistant is the reviewer: it reads the figures and the transactions behind them and records its reasoning as field notes and discussion messages |
|
|
154
154
|
|
|
155
155
|
### Notes
|
|
156
156
|
|
package/dist/tools.js
CHANGED
|
@@ -1019,7 +1019,7 @@ export const TOOLS = [
|
|
|
1019
1019
|
// ── Tax returns (Australian company / sole-trader) ──────────────────
|
|
1020
1020
|
{
|
|
1021
1021
|
name: "list_tax_returns",
|
|
1022
|
-
description: "List the account's tax returns (most recent financial year first) with status
|
|
1022
|
+
description: "List the account's tax returns (most recent financial year first) with status and completion %. Australian accounts only.",
|
|
1023
1023
|
inputSchema: { type: "object", properties: {} },
|
|
1024
1024
|
handler: (client) => client.getList("/tax_returns", "tax_returns"),
|
|
1025
1025
|
},
|
|
@@ -1047,22 +1047,9 @@ export const TOOLS = [
|
|
|
1047
1047
|
},
|
|
1048
1048
|
handler: (client, args) => client.getOne(`/tax_returns/${args.id}/sections/${args.section_key}/fields/${args.field_key}/transactions`, ""),
|
|
1049
1049
|
},
|
|
1050
|
-
{
|
|
1051
|
-
name: "list_tax_return_findings",
|
|
1052
|
-
description: "List the AI review findings for a tax return. Optionally filter by status (pending, accepted, rejected, deferred, stale).",
|
|
1053
|
-
inputSchema: {
|
|
1054
|
-
type: "object",
|
|
1055
|
-
properties: {
|
|
1056
|
-
id: { type: "integer", description: "Tax return id." },
|
|
1057
|
-
status: { type: "string", description: "Optional status filter." },
|
|
1058
|
-
},
|
|
1059
|
-
required: ["id"],
|
|
1060
|
-
},
|
|
1061
|
-
handler: (client, args) => client.getList(`/tax_returns/${args.id}/findings`, "findings", { status: args.status }),
|
|
1062
|
-
},
|
|
1063
1050
|
{
|
|
1064
1051
|
name: "update_tax_return_field",
|
|
1065
|
-
description: "Set a manual override on one tax-return field — the same as a person editing it in the web form. Recomputes the totals
|
|
1052
|
+
description: "Set a manual override on one tax-return field — the same as a person editing it in the web form. Recomputes the totals. Pass an empty value to clear an override and revert to the auto-filled figure. Fails on calculated/read-only fields and on finalised or lodged returns. Requires a token with the tax_returns:write scope.",
|
|
1066
1053
|
inputSchema: {
|
|
1067
1054
|
type: "object",
|
|
1068
1055
|
properties: {
|
|
@@ -1146,32 +1133,6 @@ export const TOOLS = [
|
|
|
1146
1133
|
},
|
|
1147
1134
|
handler: (client, args) => client.mutate("POST", `/tax_returns/${args.id}/repopulate`, {}),
|
|
1148
1135
|
},
|
|
1149
|
-
{
|
|
1150
|
-
name: "request_tax_return_ai_review",
|
|
1151
|
-
description: "Start an AI review of the tax return. The review runs in the background — poll get_tax_return (latest_review) or list_tax_return_findings to see the outcome. Requires a token with the tax_returns:write scope.",
|
|
1152
|
-
inputSchema: {
|
|
1153
|
-
type: "object",
|
|
1154
|
-
properties: { id: { type: "integer", description: "Tax return id." } },
|
|
1155
|
-
required: ["id"],
|
|
1156
|
-
},
|
|
1157
|
-
handler: (client, args) => client.mutate("POST", `/tax_returns/${args.id}/review`, {}),
|
|
1158
|
-
},
|
|
1159
|
-
{
|
|
1160
|
-
name: "resolve_tax_return_finding",
|
|
1161
|
-
description: "Resolve one pending AI review finding: accept (applies the suggested value to the field), reject, or defer. Every pending finding in a section must be resolved before that section can be confirmed. Requires a token with the tax_returns:write scope.",
|
|
1162
|
-
inputSchema: {
|
|
1163
|
-
type: "object",
|
|
1164
|
-
properties: {
|
|
1165
|
-
id: { type: "integer", description: "Tax return id." },
|
|
1166
|
-
finding_id: { type: "integer", description: "Finding id (from list_tax_return_findings)." },
|
|
1167
|
-
resolution: { type: "string", enum: ["accept", "reject", "defer"], description: "How to resolve the finding." },
|
|
1168
|
-
},
|
|
1169
|
-
required: ["id", "finding_id", "resolution"],
|
|
1170
|
-
},
|
|
1171
|
-
handler: (client, args) => client.mutate("POST", `/tax_returns/${args.id}/findings/${args.finding_id}/resolve`, {
|
|
1172
|
-
resolution: args.resolution,
|
|
1173
|
-
}),
|
|
1174
|
-
},
|
|
1175
1136
|
{
|
|
1176
1137
|
name: "finalise_tax_return",
|
|
1177
1138
|
description: "Finalise a tax return once every section is confirmed. A finalised return is locked against edits (use unfinalise_tax_return to unlock it). This does NOT lodge the return with the ATO. Requires a token with the tax_returns:write scope.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beeswax-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Official MCP server for Beeswax (beeswaxapp.com) — query invoices, quotes, expenses, payments, journals, time entries, projects, products & services and tax returns from Claude and other MCP clients, and build quotes priced from your catalogue.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://www.beeswaxapp.com/support/mcp-setup",
|