@flink-app/mcp 0.12.1-alpha.47 → 0.13.1

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/CHANGELOG.md +13 -0
  2. package/package.json +33 -35
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @flink-app/mcp
2
+
3
+ ## 0.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed invalid types and improve typescript error message during schema compilation
8
+
9
+ ## 0.13.0
10
+
11
+ ### Minor Changes
12
+
13
+ - Migrate to pnpm and streamlines build process.
package/package.json CHANGED
@@ -1,36 +1,34 @@
1
1
  {
2
- "name": "@flink-app/mcp",
3
- "version": "0.12.1-alpha.47",
4
- "description": "MCP server/client to expose API docs and possibly other things to LLM",
5
- "bin": {
6
- "flink-mcp": "./dist/index.js"
7
- },
8
- "scripts": {
9
- "test": "echo \"Error: no test specified\"",
10
- "prepare": "npm run build",
11
- "build": "tsc && chmod 755 dist/index.js",
12
- "watch": "tsc-watch",
13
- "clean": "rm -rf dist",
14
- "prestart": "npm run build",
15
- "start": "node dist/index.js"
16
- },
17
- "files": [
18
- "dist/**/*",
19
- "*.md"
20
- ],
21
- "publishConfig": {
22
- "access": "public"
23
- },
24
- "author": "joel@frost.se",
25
- "license": "MIT",
26
- "types": "dist/index.d.ts",
27
- "main": "dist/index.js",
28
- "devDependencies": {
29
- "@types/node": "22.13.10",
30
- "typescript": "5.4.5"
31
- },
32
- "dependencies": {
33
- "@modelcontextprotocol/sdk": "^1.11.0"
34
- },
35
- "gitHead": "a98a0af7f11e4a97f68da4d0d67677df7d2a2749"
36
- }
2
+ "name": "@flink-app/mcp",
3
+ "version": "0.13.1",
4
+ "description": "MCP server/client to expose API docs and possibly other things to LLM",
5
+ "bin": {
6
+ "flink-mcp": "./dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist/**/*",
10
+ "*.md"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "author": "joel@frost.se",
16
+ "license": "MIT",
17
+ "types": "dist/index.d.ts",
18
+ "main": "dist/index.js",
19
+ "devDependencies": {
20
+ "@types/node": "22.13.10"
21
+ },
22
+ "dependencies": {
23
+ "@modelcontextprotocol/sdk": "^1.11.0"
24
+ },
25
+ "gitHead": "8634b4ecbefb3f3b0b408ed80cec6caae7551cb2",
26
+ "scripts": {
27
+ "test": "echo \"Error: no test specified\"",
28
+ "build": "tsc && chmod 755 dist/index.js",
29
+ "watch": "tsc-watch",
30
+ "clean": "rimraf dist .flink",
31
+ "prestart": "npm run build",
32
+ "start": "node dist/index.js"
33
+ }
34
+ }