functype-mcp-server 0.52.0 → 0.53.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/dist/bin.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/dist/bin.js
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
if (!process.env.TRANSPORT_TYPE) process.env.TRANSPORT_TYPE = "stdio";
|
|
4
4
|
const args = process.argv.slice(2);
|
|
5
5
|
if (args.includes("--version") || args.includes("-v")) {
|
|
6
|
-
console.log("0.
|
|
6
|
+
console.log("0.53.0");
|
|
7
7
|
process.exit(0);
|
|
8
8
|
}
|
|
9
9
|
if (args.includes("--help") || args.includes("-h")) {
|
|
10
10
|
console.log(`
|
|
11
|
-
functype-mcp-server v0.
|
|
11
|
+
functype-mcp-server v0.53.0
|
|
12
12
|
|
|
13
13
|
MCP server for functype documentation lookup and TypeScript code validation.
|
|
14
14
|
|
package/dist/index.js
CHANGED
|
@@ -258,7 +258,7 @@ const validateCode = (code, options = {}) => {
|
|
|
258
258
|
//#endregion
|
|
259
259
|
//#region src/index.ts
|
|
260
260
|
const PROJECT_ROOT = dirname(dirname(fileURLToPath(import.meta.url)));
|
|
261
|
-
const SERVER_VERSION = "0.
|
|
261
|
+
const SERVER_VERSION = "0.53.0";
|
|
262
262
|
function createServer() {
|
|
263
263
|
const server = new FastMCP({
|
|
264
264
|
name: "functype-mcp-server",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "functype-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.0",
|
|
4
4
|
"description": "MCP server for functype documentation lookup and TypeScript code validation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"LICENSE"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"fastmcp": "^3.
|
|
47
|
+
"fastmcp": "^3.34.0",
|
|
48
48
|
"typescript": "^5.9.3",
|
|
49
49
|
"zod": "^4.3.6",
|
|
50
|
-
"functype": "0.
|
|
50
|
+
"functype": "0.53.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@types/node": "^24.
|
|
54
|
-
"ts-builds": "^2.
|
|
55
|
-
"tsdown": "^0.21.
|
|
53
|
+
"@types/node": "^24.12.0",
|
|
54
|
+
"ts-builds": "^2.6.2",
|
|
55
|
+
"tsdown": "^0.21.7",
|
|
56
56
|
"tsx": "^4.21.0"
|
|
57
57
|
},
|
|
58
58
|
"prettier": "ts-builds/prettier",
|