@flusterduck/mcp-server 0.5.2 → 0.5.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/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  createFlusterduckMCPServer
4
- } from "./chunk-UDB3HZEI.js";
4
+ } from "./chunk-5PJCE3ED.js";
5
5
 
6
6
  // src/cli.ts
7
7
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  FlusterduckAPI,
3
3
  createFlusterduckMCPServer
4
- } from "./chunk-UDB3HZEI.js";
4
+ } from "./chunk-5PJCE3ED.js";
5
5
  export {
6
6
  FlusterduckAPI,
7
7
  createFlusterduckMCPServer
package/package.json CHANGED
@@ -1,19 +1,25 @@
1
1
  {
2
2
  "name": "@flusterduck/mcp-server",
3
- "version": "0.5.2",
4
- "description": "Local stdio MCP server that connects AI assistants to your Flusterduck UX friction data via the Model Context Protocol.",
5
- "license": "UNLICENSED",
3
+ "version": "0.5.4",
4
+ "description": "MCP server for Flusterduck. Gives Claude, Cursor, Windsurf, and any AI coding assistant direct access to your UX friction data via Model Context Protocol.",
5
+ "mcpName": "com.flusterduck/mcp-server",
6
+ "license": "SEE LICENSE IN LICENSE.md",
6
7
  "type": "module",
7
8
  "sideEffects": false,
8
9
  "keywords": [
9
- "flusterduck",
10
10
  "mcp",
11
11
  "model-context-protocol",
12
- "ux",
13
- "ai",
14
12
  "claude",
15
- "confusion",
16
- "analytics"
13
+ "cursor",
14
+ "windsurf",
15
+ "ai",
16
+ "flusterduck",
17
+ "ux",
18
+ "friction",
19
+ "analytics",
20
+ "ai-assistant",
21
+ "coding-assistant",
22
+ "developer-tools"
17
23
  ],
18
24
  "engines": {
19
25
  "node": ">=18"
@@ -36,22 +42,36 @@
36
42
  "publishConfig": {
37
43
  "access": "public"
38
44
  },
45
+ "scripts": {
46
+ "generate:docs": "node scripts/generate-docs.mjs",
47
+ "prebuild": "pnpm generate:docs",
48
+ "build": "tsup src/index.ts src/cli.ts --format esm --dts --clean",
49
+ "predev": "pnpm generate:docs",
50
+ "dev": "tsup src/index.ts src/cli.ts --format esm --dts --watch",
51
+ "typecheck": "tsc --noEmit",
52
+ "test": "vitest run",
53
+ "clean": "rm -rf dist",
54
+ "prepublishOnly": "pnpm build"
55
+ },
39
56
  "dependencies": {
40
57
  "@modelcontextprotocol/sdk": "1.29.0",
41
58
  "zod": "3.25.76"
42
59
  },
43
60
  "devDependencies": {
61
+ "@flusterduck/tsconfig": "workspace:*",
44
62
  "@types/node": "22.19.17",
45
63
  "tsup": "8.5.1",
46
64
  "typescript": "5.9.3",
47
- "vitest": "4.1.8",
48
- "@flusterduck/tsconfig": "0.2.0"
65
+ "vitest": "4.1.8"
49
66
  },
50
- "scripts": {
51
- "build": "tsup src/index.ts src/cli.ts --format esm --dts --clean",
52
- "dev": "tsup src/index.ts src/cli.ts --format esm --dts --watch",
53
- "typecheck": "tsc --noEmit",
54
- "test": "vitest run",
55
- "clean": "rm -rf dist"
56
- }
57
- }
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "https://github.com/creayo-dev/flusterduck.git",
70
+ "directory": "packages/mcp-server"
71
+ },
72
+ "homepage": "https://flusterduck.com",
73
+ "bugs": {
74
+ "url": "https://github.com/creayo-dev/flusterduck/issues"
75
+ },
76
+ "author": "Creayo LLC <admin@creayodev.com>"
77
+ }
package/LICENSE.md DELETED
@@ -1,23 +0,0 @@
1
- PROPRIETARY LICENSE FOR FLUSTERDUCK
2
-
3
- Copyright (c) 2026 Creayo
4
-
5
- 1. DEFINITIONS
6
- "Software" refers to the Flusterduck source code, compiled binaries, SDKs, libraries, and documentation.
7
- "Package" refers to the officially distributed compiled artifacts (e.g., via NPM).
8
-
9
- 2. USAGE GRANT
10
- Subject to the terms of this License, Creayo hereby grants you a non-exclusive, worldwide, royalty-free license to use, incorporate, and bundle the compiled Packages into your own applications for any purpose, including commercial use.
11
-
12
- 3. SOURCE CODE RESTRICTIONS
13
- You are strictly prohibited from:
14
- a) Copying, modifying, or distributing the Software's original source code.
15
- b) Reverse engineering, decompiling, or disassembling the Software or any of its components.
16
- c) Creating derivative works based on the Software's source code.
17
- d) Removing or altering any copyright notices or branding from the Software.
18
-
19
- 4. OWNERSHIP
20
- Creayo retains all rights, title, and interest in and to the Software, including all intellectual property rights.
21
-
22
- 5. DISCLAIMER OF WARRANTY
23
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.