@promptpartner/bexio-mcp-server 2.0.5 → 2.0.6

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.
Files changed (2) hide show
  1. package/README.md +28 -1
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -4,6 +4,10 @@ Complete Swiss accounting integration for [Bexio](https://www.bexio.com/) via th
4
4
 
5
5
  Manage invoices, contacts, projects, time tracking, and 200+ more tools through AI conversation or workflow automation.
6
6
 
7
+ > ⚠️ **Early Release Software**
8
+ >
9
+ > This project is under active development. While it's functional and tested, you may encounter bugs or unexpected behavior. Features will continue to be added and improved over time. Please [report any issues](https://github.com/promptpartner/bexio-mcp-server/issues) you find!
10
+
7
11
  ## Compatibility
8
12
 
9
13
  | Client | Transport | Status |
@@ -164,6 +168,29 @@ Options:
164
168
  - Verify the config file path is correct for your OS
165
169
  - Check Claude Desktop logs for error messages
166
170
 
171
+ ## Privacy Policy
172
+
173
+ This MCP server acts as a pass-through to the Bexio API and does not store any data. For full details, see our [Privacy Policy](PRIVACY.md).
174
+
175
+ Your data is processed according to [Bexio's Privacy Policy](https://www.bexio.com/en-CH/privacy-policy).
176
+
177
+ ## Support
178
+
179
+ - **Issues & Bug Reports:** [GitHub Issues](https://github.com/promptpartner/bexio-mcp-server/issues)
180
+ - **Email:** lukas@promptpartner.ai
181
+
182
+ ## Support the Project
183
+
184
+ If this project saves you time or helps your business, consider buying me a coffee! ☕
185
+
186
+ [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-support-yellow?style=flat&logo=buy-me-a-coffee)](https://buymeacoffee.com/lukashertig)
187
+
188
+ Your support helps keep this project maintained and improved!
189
+
190
+ ## Author
191
+
192
+ Created by [Lukas Hertig](https://linkedin.com/in/lukashertig) from [PromptPartner.ai](https://promptpartner.ai)
193
+
167
194
  ## Acknowledgments
168
195
 
169
196
  This project builds upon the original Bexio MCP server created by [Sebastian Bryner](https://www.linkedin.com/in/sebastian-bryner/) of [bryner.tech](https://bryner.tech/). His v1.0 implementation provided the foundational architecture and initial 83 tools that made this expanded v2.0 possible.
@@ -176,4 +203,4 @@ MIT - See [LICENSE](LICENSE) for details.
176
203
 
177
204
  - [Bexio API Documentation](https://docs.bexio.com/)
178
205
  - [MCP Protocol Specification](https://modelcontextprotocol.io/)
179
- - [Report Issues](https://github.com/promptpartner/bexio-mcp-server/issues)
206
+ - [PromptPartner.ai](https://promptpartner.ai)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@promptpartner/bexio-mcp-server",
3
- "version": "2.0.5",
4
- "description": "Model Context Protocol server for Bexio API integration",
3
+ "version": "2.0.6",
4
+ "description": "Complete Swiss accounting integration for Bexio via MCP. Works with Claude Desktop, n8n, and any MCP client. 221 tools for invoices, contacts, projects, time tracking and more.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
7
7
  "bin": {
@@ -31,7 +31,8 @@
31
31
  },
32
32
  "author": {
33
33
  "name": "Lukas Hertig",
34
- "email": "lukas@promptpartner.ai"
34
+ "email": "lukas@promptpartner.ai",
35
+ "url": "https://promptpartner.ai"
35
36
  },
36
37
  "repository": {
37
38
  "type": "git",
@@ -77,5 +78,9 @@
77
78
  },
78
79
  "publishConfig": {
79
80
  "access": "public"
81
+ },
82
+ "funding": {
83
+ "type": "buymeacoffee",
84
+ "url": "https://buymeacoffee.com/lukashertig"
80
85
  }
81
86
  }