@nightsquawktech/kimai-mcp-server 0.1.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/COMMERCIAL.md +35 -0
- package/LICENSE +661 -0
- package/README.md +115 -0
- package/dist/constants.js +9 -0
- package/dist/index.js +23 -0
- package/dist/schemas/common.js +28 -0
- package/dist/schemas/mutations.js +65 -0
- package/dist/schemas/resources.js +45 -0
- package/dist/schemas/server.js +7 -0
- package/dist/services/backups.js +16 -0
- package/dist/services/config.js +22 -0
- package/dist/services/errors.js +38 -0
- package/dist/services/kimai-client.js +66 -0
- package/dist/tools/business.js +45 -0
- package/dist/tools/catalog.js +81 -0
- package/dist/tools/format.js +70 -0
- package/dist/tools/index.js +16 -0
- package/dist/tools/plugins.js +40 -0
- package/dist/tools/read-tools.js +66 -0
- package/dist/tools/server.js +37 -0
- package/dist/tools/timesheet-mutations.js +190 -0
- package/dist/tools/timesheets.js +51 -0
- package/dist/tools/users.js +47 -0
- package/dist/types.js +1 -0
- package/package.json +48 -0
package/COMMERCIAL.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Commercial Licensing
|
|
2
|
+
|
|
3
|
+
This project is dual-licensed.
|
|
4
|
+
|
|
5
|
+
## Open Source (AGPL-3.0)
|
|
6
|
+
|
|
7
|
+
The code in this repository is licensed under the [GNU Affero General Public License v3.0](./LICENSE) (AGPL-3.0). You are free to use, modify, and redistribute it under the terms of that license.
|
|
8
|
+
|
|
9
|
+
In practical terms, the AGPL requires that if you run a modified version of this software and let others interact with it over a network, you must make your modified source code available to those users under the same license.
|
|
10
|
+
|
|
11
|
+
**Individuals and personal use:** the AGPL costs nothing. Use it, fork it, self-host it.
|
|
12
|
+
|
|
13
|
+
## Commercial License
|
|
14
|
+
|
|
15
|
+
If your organization wants to use this software without the obligations of the AGPL, a commercial license is available. Typical reasons:
|
|
16
|
+
|
|
17
|
+
- You want to embed or distribute this software as part of a closed-source product or service.
|
|
18
|
+
- You run a hosted or internal service built on modified versions and cannot release the modifications.
|
|
19
|
+
- Your legal or compliance team does not permit AGPL-licensed dependencies.
|
|
20
|
+
|
|
21
|
+
Commercial licensing also comes with the option of professional support, priority fixes, and custom MCP server development.
|
|
22
|
+
|
|
23
|
+
**Contact:** hello@nightsquawk.tech
|
|
24
|
+
|
|
25
|
+
## Hosted Option
|
|
26
|
+
|
|
27
|
+
NightSquawk Tech offers managed, hosted versions of its MCP servers, so you can use them without deploying or maintaining anything. Reach out to the address above for details.
|
|
28
|
+
|
|
29
|
+
## Contributions
|
|
30
|
+
|
|
31
|
+
To keep dual-licensing possible, we ask outside contributors to agree to a Contributor License Agreement (CLA) granting NightSquawk Tech the right to relicense contributed code. Contributions remain available to everyone under the AGPL.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
Copyright (c) 2025-2026 Kevin Reyes DBA NightSquawk Tech
|