functype-mcp-server 1.1.0 → 1.2.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.1.0");
6
+ console.log("1.2.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.1.0
11
+ functype-mcp-server v1.2.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.1.0";
261
+ const SERVER_VERSION = "1.2.1";
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": "1.1.0",
3
+ "version": "1.2.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.0.1",
49
49
  "typescript": "^6.0.3",
50
50
  "zod": "^4.4.3",
51
- "functype": "1.1.0"
51
+ "functype": "1.2.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/node": "^24.12.4",