flowpad-mcp-local 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/README.md +30 -0
- package/dist/index.js +116 -0
- package/package.json +31 -0
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flowpad-mcp-local",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Local (stdio) Flowpad MCP server — a self-contained bundled build of flowpad-mcp that users run on their own machine via npx, connecting to the hosted Flowpad backend.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"flowpad-mcp-local": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "esbuild src/index.ts --bundle --minify --platform=node --format=esm --target=node18 --outfile=dist/index.js --banner:js=\"#!/usr/bin/env node\"",
|
|
18
|
+
"dev": "tsx src/index.ts",
|
|
19
|
+
"typecheck": "tsc --noEmit"
|
|
20
|
+
},
|
|
21
|
+
"comment": "No runtime dependencies on purpose: esbuild inlines everything into dist/index.js. All deps below are BUILD-time only, so end-users install nothing (npm install / npx pulls no @flowpad/mcp file: dep) and just run the bundle.",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@flowpad/mcp": "file:../flowpad-mcp",
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
25
|
+
"@types/node": "^22.10.0",
|
|
26
|
+
"dotenv": "^17.4.2",
|
|
27
|
+
"esbuild": "^0.24.0",
|
|
28
|
+
"tsx": "^4.19.0",
|
|
29
|
+
"typescript": "^5.7.0"
|
|
30
|
+
}
|
|
31
|
+
}
|