@flowdot.ai/mcp-server 1.0.3 → 1.0.4
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/LICENSE +45 -21
- package/package.json +4 -3
package/LICENSE
CHANGED
|
@@ -1,21 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 FlowDot LLC
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
FlowDot Proprietary Software License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 FlowDot LLC. All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS
|
|
6
|
+
|
|
7
|
+
1. GRANT OF LICENSE
|
|
8
|
+
FlowDot LLC grants you a limited, non-exclusive, non-transferable license
|
|
9
|
+
to install and use this software for personal or commercial purposes,
|
|
10
|
+
subject to the terms of this agreement.
|
|
11
|
+
|
|
12
|
+
2. RESTRICTIONS
|
|
13
|
+
You may NOT:
|
|
14
|
+
- Modify, alter, adapt, or create derivative works of this software
|
|
15
|
+
- Reverse engineer, decompile, disassemble, or attempt to derive the
|
|
16
|
+
source code of this software
|
|
17
|
+
- Redistribute, sublicense, lease, rent, or sell copies of this software
|
|
18
|
+
- Remove, alter, or obscure any proprietary notices, labels, or marks
|
|
19
|
+
- Use this software to create a competing product or service
|
|
20
|
+
|
|
21
|
+
3. OWNERSHIP
|
|
22
|
+
This software is licensed, not sold. FlowDot LLC retains all right, title,
|
|
23
|
+
and interest in and to the software, including all intellectual property
|
|
24
|
+
rights therein.
|
|
25
|
+
|
|
26
|
+
4. TERMINATION
|
|
27
|
+
This license is effective until terminated. Your rights under this license
|
|
28
|
+
will terminate automatically without notice if you fail to comply with any
|
|
29
|
+
of its terms.
|
|
30
|
+
|
|
31
|
+
5. DISCLAIMER OF WARRANTIES
|
|
32
|
+
THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
33
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
34
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
35
|
+
|
|
36
|
+
6. LIMITATION OF LIABILITY
|
|
37
|
+
IN NO EVENT SHALL FLOWDOT LLC BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
|
|
38
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN
|
|
39
|
+
CONNECTION WITH THIS SOFTWARE.
|
|
40
|
+
|
|
41
|
+
7. GOVERNING LAW
|
|
42
|
+
This agreement shall be governed by the laws of the State of Delaware,
|
|
43
|
+
United States, without regard to its conflict of law provisions.
|
|
44
|
+
|
|
45
|
+
For licensing inquiries, contact: hello@flowdot.ai
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowdot.ai/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "FlowDot MCP Server - Connect Claude Desktop, Cursor, and other AI tools to FlowDot workflows",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"automation"
|
|
29
29
|
],
|
|
30
30
|
"author": "FlowDot",
|
|
31
|
-
"license": "
|
|
31
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "https://github.com/flowdot-llc/mcp-server"
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://flowdot.ai/docs/mcp",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@flowdot.ai/api": "^1.0.
|
|
38
|
+
"@flowdot.ai/api": "^1.0.3",
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
40
40
|
"@types/acorn": "^4.0.6",
|
|
41
41
|
"acorn": "^8.15.0",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"files": [
|
|
52
52
|
"dist",
|
|
53
53
|
"bin",
|
|
54
|
+
"LICENSE",
|
|
54
55
|
"README.md"
|
|
55
56
|
],
|
|
56
57
|
"engines": {
|