functype-mcp-server 1.6.0 → 1.6.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.
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("1.6.0");
6
+ console.log("1.6.1");
7
7
  process.exit(0);
8
8
  }
9
9
  if (args.includes("--help") || args.includes("-h")) {
10
10
  console.log(`
11
- functype-mcp-server v1.6.0
11
+ functype-mcp-server v1.6.1
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 = "1.6.0";
261
+ const SERVER_VERSION = "1.6.1";
262
262
  const SAFE_FUNCTYPE_VERSION = /^(?:latest|next|beta|alpha|canary|rc|[~^]?v?\d+(?:\.\d+){0,2}(?:-[0-9A-Za-z.-]+)?(?:\+[0-9A-Za-z.-]+)?)$/;
263
263
  const isSafeFunctypeVersion = (version) => {
264
264
  if (version.trim() !== version) return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functype-mcp-server",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "MCP server for functype documentation lookup and TypeScript code validation",
5
5
  "keywords": [
6
6
  "mcp",
@@ -48,7 +48,7 @@
48
48
  "fastmcp": "^4.3.2",
49
49
  "typescript": "^6.0.3",
50
50
  "zod": "^4.4.3",
51
- "functype": "1.6.0"
51
+ "functype": "1.6.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/node": "^24.13.2",