@intlayer/mcp 8.1.2 → 8.1.3

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.
@@ -1,142 +1,4 @@
1
- import { SKILLS, installSkills } from "@intlayer/chokidar/cli";
2
- import * as readline from "node:readline";
3
- import z from "zod";
4
-
5
- //#region src/tools/installSkills.ts
6
- const loadInstallSkillsTool = (server) => {
7
- server.registerTool("intlayer-install-skills", {
8
- title: "Install Intlayer Skills",
9
- description: "Install Intlayer documentation and skills to the project to assist AI agents. Ask the user for the platform (Cursor, VSCode, OpenCode, Claude, etc.) and which skills they want to install before calling this tool.",
10
- inputSchema: {
11
- platform: z.enum([
12
- "Cursor",
13
- "Windsurf",
14
- "Trae",
15
- "OpenCode",
16
- "GitHub",
17
- "Claude",
18
- "VSCode",
19
- "Antigravity",
20
- "Augment",
21
- "OpenClaw",
22
- "Cline",
23
- "CodeBuddy",
24
- "CommandCode",
25
- "Continue",
26
- "Crush",
27
- "Droid",
28
- "Goose",
29
- "Junie",
30
- "IFlow",
31
- "KiloCode",
32
- "Kiro",
33
- "Kode",
34
- "MCPJam",
35
- "MistralVibe",
36
- "Mux",
37
- "OpenHands",
38
- "Pi",
39
- "Qoder",
40
- "Qwen",
41
- "RooCode",
42
- "TraeCN",
43
- "Zencoder",
44
- "Neovate",
45
- "Pochi",
46
- "Other"
47
- ]).describe("The platform to install skills for"),
48
- skills: z.array(z.enum(SKILLS)).describe("List of skills to install"),
49
- projectRoot: z.string().optional().describe("Root directory of the project. Defaults to current directory.")
50
- }
51
- }, async ({ platform, skills, projectRoot }) => {
52
- try {
53
- return { content: [{
54
- type: "text",
55
- text: await installSkills(projectRoot || process.cwd(), platform, skills)
56
- }] };
57
- } catch (error) {
58
- return {
59
- content: [{
60
- type: "text",
61
- text: `Failed to install skills: ${error instanceof Error ? error.message : String(error)}`
62
- }],
63
- isError: true
64
- };
65
- }
66
- });
67
- };
68
- const runInstallSkillsCLI = async () => {
69
- const rl = readline.createInterface({
70
- input: process.stdin,
71
- output: process.stdout
72
- });
73
- const question = (query) => new Promise((resolve) => rl.question(query, resolve));
74
- try {
75
- console.log("Install Intlayer Skills");
76
- console.log("-----------------------");
77
- const platformInput = await question("Which platform are you using? (Cursor, Windsurf, Trae, OpenCode, GitHub, Claude, VSCode, Cline, RooCode, etc. or \"Other\"): ");
78
- const platform = [
79
- "Cursor",
80
- "Windsurf",
81
- "Trae",
82
- "OpenCode",
83
- "GitHub",
84
- "Claude",
85
- "VSCode",
86
- "Antigravity",
87
- "Augment",
88
- "OpenClaw",
89
- "Cline",
90
- "CodeBuddy",
91
- "CommandCode",
92
- "Continue",
93
- "Crush",
94
- "Droid",
95
- "Goose",
96
- "Junie",
97
- "IFlow",
98
- "KiloCode",
99
- "Kiro",
100
- "Kode",
101
- "MCPJam",
102
- "MistralVibe",
103
- "Mux",
104
- "OpenHands",
105
- "Pi",
106
- "Qoder",
107
- "Qwen",
108
- "RooCode",
109
- "TraeCN",
110
- "Zencoder",
111
- "Neovate",
112
- "Pochi",
113
- "Other"
114
- ].find((p) => p.toLowerCase() === platformInput.trim().toLowerCase()) || "Other";
115
- console.log(`Selected platform: ${platform}`);
116
- const availableSkills = SKILLS;
117
- console.log("\nAvailable skills:");
118
- availableSkills.forEach((s, i) => {
119
- console.log(`${i + 1}. ${s}`);
120
- });
121
- const skillsInput = await question("\nWhich skills do you want to install? (comma separated numbers, e.g. 1,2,3 or \"all\"): ");
122
- let selectedSkills = [];
123
- if (skillsInput.trim().toLowerCase() === "all") selectedSkills = [...availableSkills];
124
- else selectedSkills = skillsInput.split(",").map((s) => parseInt(s.trim()) - 1).filter((i) => !isNaN(i) && i >= 0 && i < availableSkills.length).map((i) => availableSkills[i]);
125
- if (selectedSkills.length === 0) {
126
- console.log("No valid skills selected. Exiting.");
127
- rl.close();
128
- return;
129
- }
130
- console.log(`Installing skills: ${selectedSkills.join(", ")}...`);
131
- const result = await installSkills(process.cwd(), platform, selectedSkills);
132
- console.log(result);
133
- } catch (error) {
134
- console.error("Error:", error);
135
- } finally {
136
- rl.close();
137
- }
138
- };
139
-
140
- //#endregion
141
- export { loadInstallSkillsTool, runInstallSkillsCLI };
1
+ import{SKILLS as e,installSkills as t}from"@intlayer/chokidar/cli";import*as n from"node:readline";import r from"zod";const i=n=>{n.registerTool(`intlayer-install-skills`,{title:`Install Intlayer Skills`,description:`Install Intlayer documentation and skills to the project to assist AI agents. Ask the user for the platform (Cursor, VSCode, OpenCode, Claude, etc.) and which skills they want to install before calling this tool.`,inputSchema:{platform:r.enum(`Cursor.Windsurf.Trae.OpenCode.GitHub.Claude.VSCode.Antigravity.Augment.OpenClaw.Cline.CodeBuddy.CommandCode.Continue.Crush.Droid.Goose.Junie.IFlow.KiloCode.Kiro.Kode.MCPJam.MistralVibe.Mux.OpenHands.Pi.Qoder.Qwen.RooCode.TraeCN.Zencoder.Neovate.Pochi.Other`.split(`.`)).describe(`The platform to install skills for`),skills:r.array(r.enum(e)).describe(`List of skills to install`),projectRoot:r.string().optional().describe(`Root directory of the project. Defaults to current directory.`)}},async({platform:e,skills:n,projectRoot:r})=>{try{return{content:[{type:`text`,text:await t(r||process.cwd(),e,n)}]}}catch(e){return{content:[{type:`text`,text:`Failed to install skills: ${e instanceof Error?e.message:String(e)}`}],isError:!0}}})},a=async()=>{let r=n.createInterface({input:process.stdin,output:process.stdout}),i=e=>new Promise(t=>r.question(e,t));try{console.log(`Install Intlayer Skills`),console.log(`-----------------------`);let n=await i(`Which platform are you using? (Cursor, Windsurf, Trae, OpenCode, GitHub, Claude, VSCode, Cline, RooCode, etc. or "Other"): `),a=`Cursor.Windsurf.Trae.OpenCode.GitHub.Claude.VSCode.Antigravity.Augment.OpenClaw.Cline.CodeBuddy.CommandCode.Continue.Crush.Droid.Goose.Junie.IFlow.KiloCode.Kiro.Kode.MCPJam.MistralVibe.Mux.OpenHands.Pi.Qoder.Qwen.RooCode.TraeCN.Zencoder.Neovate.Pochi.Other`.split(`.`).find(e=>e.toLowerCase()===n.trim().toLowerCase())||`Other`;console.log(`Selected platform: ${a}`);let o=e;console.log(`
2
+ Available skills:`),o.forEach((e,t)=>{console.log(`${t+1}. ${e}`)});let s=await i(`
3
+ Which skills do you want to install? (comma separated numbers, e.g. 1,2,3 or "all"): `),c=[];if(c=s.trim().toLowerCase()===`all`?[...o]:s.split(`,`).map(e=>parseInt(e.trim())-1).filter(e=>!isNaN(e)&&e>=0&&e<o.length).map(e=>o[e]),c.length===0){console.log(`No valid skills selected. Exiting.`),r.close();return}console.log(`Installing skills: ${c.join(`, `)}...`);let l=await t(process.cwd(),a,c);console.log(l)}catch(e){console.error(`Error:`,e)}finally{r.close()}};export{i as loadInstallSkillsTool,a as runInstallSkillsCLI};
142
4
  //# sourceMappingURL=installSkills.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"installSkills.mjs","names":[],"sources":["../../../src/tools/installSkills.ts"],"sourcesContent":["import * as readline from 'node:readline';\nimport { installSkills, SKILLS, type Skill } from '@intlayer/chokidar/cli';\nimport type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport z from 'zod';\n\nexport const loadInstallSkillsTool = (server: McpServer): void => {\n server.registerTool(\n 'intlayer-install-skills',\n {\n title: 'Install Intlayer Skills',\n description:\n 'Install Intlayer documentation and skills to the project to assist AI agents. Ask the user for the platform (Cursor, VSCode, OpenCode, Claude, etc.) and which skills they want to install before calling this tool.',\n inputSchema: {\n platform: z\n .enum([\n 'Cursor',\n 'Windsurf',\n 'Trae',\n 'OpenCode',\n 'GitHub',\n 'Claude',\n 'VSCode',\n 'Antigravity',\n 'Augment',\n 'OpenClaw',\n 'Cline',\n 'CodeBuddy',\n 'CommandCode',\n 'Continue',\n 'Crush',\n 'Droid',\n 'Goose',\n 'Junie',\n 'IFlow',\n 'KiloCode',\n 'Kiro',\n 'Kode',\n 'MCPJam',\n 'MistralVibe',\n 'Mux',\n 'OpenHands',\n 'Pi',\n 'Qoder',\n 'Qwen',\n 'RooCode',\n 'TraeCN',\n 'Zencoder',\n 'Neovate',\n 'Pochi',\n 'Other',\n ])\n .describe('The platform to install skills for'),\n skills: z.array(z.enum(SKILLS)).describe('List of skills to install'),\n projectRoot: z\n .string()\n .optional()\n .describe(\n 'Root directory of the project. Defaults to current directory.'\n ),\n },\n },\n async ({ platform, skills, projectRoot }) => {\n try {\n const root = projectRoot || process.cwd();\n const message = await installSkills(\n root,\n platform as any,\n skills as any\n );\n\n return {\n content: [\n {\n type: 'text',\n text: message,\n },\n ],\n };\n } catch (error) {\n return {\n content: [\n {\n type: 'text',\n text: `Failed to install skills: ${error instanceof Error ? error.message : String(error)}`,\n },\n ],\n isError: true,\n };\n }\n }\n );\n};\n\nexport const runInstallSkillsCLI = async (): Promise<void> => {\n const rl = readline.createInterface({\n input: process.stdin,\n output: process.stdout,\n });\n\n const question = (query: string): Promise<string> =>\n new Promise((resolve) => rl.question(query, resolve));\n\n try {\n console.log('Install Intlayer Skills');\n console.log('-----------------------');\n\n const platformInput = await question(\n 'Which platform are you using? (Cursor, Windsurf, Trae, OpenCode, GitHub, Claude, VSCode, Cline, RooCode, etc. or \"Other\"): '\n );\n const platform = ([\n 'Cursor',\n 'Windsurf',\n 'Trae',\n 'OpenCode',\n 'GitHub',\n 'Claude',\n 'VSCode',\n 'Antigravity',\n 'Augment',\n 'OpenClaw',\n 'Cline',\n 'CodeBuddy',\n 'CommandCode',\n 'Continue',\n 'Crush',\n 'Droid',\n 'Goose',\n 'Junie',\n 'IFlow',\n 'KiloCode',\n 'Kiro',\n 'Kode',\n 'MCPJam',\n 'MistralVibe',\n 'Mux',\n 'OpenHands',\n 'Pi',\n 'Qoder',\n 'Qwen',\n 'RooCode',\n 'TraeCN',\n 'Zencoder',\n 'Neovate',\n 'Pochi',\n 'Other',\n ].find((p) => p.toLowerCase() === platformInput.trim().toLowerCase()) ||\n 'Other') as\n | 'Cursor'\n | 'Windsurf'\n | 'Trae'\n | 'OpenCode'\n | 'GitHub'\n | 'Claude'\n | 'VSCode'\n | 'Antigravity'\n | 'Augment'\n | 'OpenClaw'\n | 'Cline'\n | 'CodeBuddy'\n | 'CommandCode'\n | 'Continue'\n | 'Crush'\n | 'Droid'\n | 'Goose'\n | 'Junie'\n | 'IFlow'\n | 'KiloCode'\n | 'Kiro'\n | 'Kode'\n | 'MCPJam'\n | 'MistralVibe'\n | 'Mux'\n | 'OpenHands'\n | 'Pi'\n | 'Qoder'\n | 'Qwen'\n | 'RooCode'\n | 'TraeCN'\n | 'Zencoder'\n | 'Neovate'\n | 'Pochi'\n | 'Other';\n\n console.log(`Selected platform: ${platform}`);\n\n const availableSkills = SKILLS;\n console.log('\\nAvailable skills:');\n availableSkills.forEach((s, i) => {\n console.log(`${i + 1}. ${s}`);\n });\n\n const skillsInput = await question(\n '\\nWhich skills do you want to install? (comma separated numbers, e.g. 1,2,3 or \"all\"): '\n );\n\n let selectedSkills: Skill[] = [];\n if (skillsInput.trim().toLowerCase() === 'all') {\n selectedSkills = [...availableSkills];\n } else {\n const indices = skillsInput\n .split(',')\n .map((s) => parseInt(s.trim()) - 1)\n .filter((i) => !isNaN(i) && i >= 0 && i < availableSkills.length);\n selectedSkills = indices.map((i) => availableSkills[i] as any);\n }\n\n if (selectedSkills.length === 0) {\n console.log('No valid skills selected. Exiting.');\n rl.close();\n return;\n }\n\n console.log(`Installing skills: ${selectedSkills.join(', ')}...`);\n const result = await installSkills(process.cwd(), platform, selectedSkills);\n console.log(result);\n } catch (error) {\n console.error('Error:', error);\n } finally {\n rl.close();\n }\n};\n"],"mappings":";;;;;AAKA,MAAa,yBAAyB,WAA4B;AAChE,QAAO,aACL,2BACA;EACE,OAAO;EACP,aACE;EACF,aAAa;GACX,UAAU,EACP,KAAK;IACJ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACD,CAAC,CACD,SAAS,qCAAqC;GACjD,QAAQ,EAAE,MAAM,EAAE,KAAK,OAAO,CAAC,CAAC,SAAS,4BAA4B;GACrE,aAAa,EACV,QAAQ,CACR,UAAU,CACV,SACC,gEACD;GACJ;EACF,EACD,OAAO,EAAE,UAAU,QAAQ,kBAAkB;AAC3C,MAAI;AAQF,UAAO,EACL,SAAS,CACP;IACE,MAAM;IACN,MAVU,MAAM,cADT,eAAe,QAAQ,KAAK,EAGvC,UACA,OACD;IAOI,CACF,EACF;WACM,OAAO;AACd,UAAO;IACL,SAAS,CACP;KACE,MAAM;KACN,MAAM,6BAA6B,iBAAiB,QAAQ,MAAM,UAAU,OAAO,MAAM;KAC1F,CACF;IACD,SAAS;IACV;;GAGN;;AAGH,MAAa,sBAAsB,YAA2B;CAC5D,MAAM,KAAK,SAAS,gBAAgB;EAClC,OAAO,QAAQ;EACf,QAAQ,QAAQ;EACjB,CAAC;CAEF,MAAM,YAAY,UAChB,IAAI,SAAS,YAAY,GAAG,SAAS,OAAO,QAAQ,CAAC;AAEvD,KAAI;AACF,UAAQ,IAAI,0BAA0B;AACtC,UAAQ,IAAI,0BAA0B;EAEtC,MAAM,gBAAgB,MAAM,SAC1B,gIACD;EACD,MAAM,WAAY;GAChB;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACD,CAAC,MAAM,MAAM,EAAE,aAAa,KAAK,cAAc,MAAM,CAAC,aAAa,CAAC,IACnE;AAqCF,UAAQ,IAAI,sBAAsB,WAAW;EAE7C,MAAM,kBAAkB;AACxB,UAAQ,IAAI,sBAAsB;AAClC,kBAAgB,SAAS,GAAG,MAAM;AAChC,WAAQ,IAAI,GAAG,IAAI,EAAE,IAAI,IAAI;IAC7B;EAEF,MAAM,cAAc,MAAM,SACxB,4FACD;EAED,IAAI,iBAA0B,EAAE;AAChC,MAAI,YAAY,MAAM,CAAC,aAAa,KAAK,MACvC,kBAAiB,CAAC,GAAG,gBAAgB;MAMrC,kBAJgB,YACb,MAAM,IAAI,CACV,KAAK,MAAM,SAAS,EAAE,MAAM,CAAC,GAAG,EAAE,CAClC,QAAQ,MAAM,CAAC,MAAM,EAAE,IAAI,KAAK,KAAK,IAAI,gBAAgB,OAAO,CAC1C,KAAK,MAAM,gBAAgB,GAAU;AAGhE,MAAI,eAAe,WAAW,GAAG;AAC/B,WAAQ,IAAI,qCAAqC;AACjD,MAAG,OAAO;AACV;;AAGF,UAAQ,IAAI,sBAAsB,eAAe,KAAK,KAAK,CAAC,KAAK;EACjE,MAAM,SAAS,MAAM,cAAc,QAAQ,KAAK,EAAE,UAAU,eAAe;AAC3E,UAAQ,IAAI,OAAO;UACZ,OAAO;AACd,UAAQ,MAAM,UAAU,MAAM;WACtB;AACR,KAAG,OAAO"}
1
+ {"version":3,"file":"installSkills.mjs","names":[],"sources":["../../../src/tools/installSkills.ts"],"sourcesContent":["import * as readline from 'node:readline';\nimport { installSkills, SKILLS, type Skill } from '@intlayer/chokidar/cli';\nimport type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport z from 'zod';\n\nexport const loadInstallSkillsTool = (server: McpServer): void => {\n server.registerTool(\n 'intlayer-install-skills',\n {\n title: 'Install Intlayer Skills',\n description:\n 'Install Intlayer documentation and skills to the project to assist AI agents. Ask the user for the platform (Cursor, VSCode, OpenCode, Claude, etc.) and which skills they want to install before calling this tool.',\n inputSchema: {\n platform: z\n .enum([\n 'Cursor',\n 'Windsurf',\n 'Trae',\n 'OpenCode',\n 'GitHub',\n 'Claude',\n 'VSCode',\n 'Antigravity',\n 'Augment',\n 'OpenClaw',\n 'Cline',\n 'CodeBuddy',\n 'CommandCode',\n 'Continue',\n 'Crush',\n 'Droid',\n 'Goose',\n 'Junie',\n 'IFlow',\n 'KiloCode',\n 'Kiro',\n 'Kode',\n 'MCPJam',\n 'MistralVibe',\n 'Mux',\n 'OpenHands',\n 'Pi',\n 'Qoder',\n 'Qwen',\n 'RooCode',\n 'TraeCN',\n 'Zencoder',\n 'Neovate',\n 'Pochi',\n 'Other',\n ])\n .describe('The platform to install skills for'),\n skills: z.array(z.enum(SKILLS)).describe('List of skills to install'),\n projectRoot: z\n .string()\n .optional()\n .describe(\n 'Root directory of the project. Defaults to current directory.'\n ),\n },\n },\n async ({ platform, skills, projectRoot }) => {\n try {\n const root = projectRoot || process.cwd();\n const message = await installSkills(\n root,\n platform as any,\n skills as any\n );\n\n return {\n content: [\n {\n type: 'text',\n text: message,\n },\n ],\n };\n } catch (error) {\n return {\n content: [\n {\n type: 'text',\n text: `Failed to install skills: ${error instanceof Error ? error.message : String(error)}`,\n },\n ],\n isError: true,\n };\n }\n }\n );\n};\n\nexport const runInstallSkillsCLI = async (): Promise<void> => {\n const rl = readline.createInterface({\n input: process.stdin,\n output: process.stdout,\n });\n\n const question = (query: string): Promise<string> =>\n new Promise((resolve) => rl.question(query, resolve));\n\n try {\n console.log('Install Intlayer Skills');\n console.log('-----------------------');\n\n const platformInput = await question(\n 'Which platform are you using? (Cursor, Windsurf, Trae, OpenCode, GitHub, Claude, VSCode, Cline, RooCode, etc. or \"Other\"): '\n );\n const platform = ([\n 'Cursor',\n 'Windsurf',\n 'Trae',\n 'OpenCode',\n 'GitHub',\n 'Claude',\n 'VSCode',\n 'Antigravity',\n 'Augment',\n 'OpenClaw',\n 'Cline',\n 'CodeBuddy',\n 'CommandCode',\n 'Continue',\n 'Crush',\n 'Droid',\n 'Goose',\n 'Junie',\n 'IFlow',\n 'KiloCode',\n 'Kiro',\n 'Kode',\n 'MCPJam',\n 'MistralVibe',\n 'Mux',\n 'OpenHands',\n 'Pi',\n 'Qoder',\n 'Qwen',\n 'RooCode',\n 'TraeCN',\n 'Zencoder',\n 'Neovate',\n 'Pochi',\n 'Other',\n ].find((p) => p.toLowerCase() === platformInput.trim().toLowerCase()) ||\n 'Other') as\n | 'Cursor'\n | 'Windsurf'\n | 'Trae'\n | 'OpenCode'\n | 'GitHub'\n | 'Claude'\n | 'VSCode'\n | 'Antigravity'\n | 'Augment'\n | 'OpenClaw'\n | 'Cline'\n | 'CodeBuddy'\n | 'CommandCode'\n | 'Continue'\n | 'Crush'\n | 'Droid'\n | 'Goose'\n | 'Junie'\n | 'IFlow'\n | 'KiloCode'\n | 'Kiro'\n | 'Kode'\n | 'MCPJam'\n | 'MistralVibe'\n | 'Mux'\n | 'OpenHands'\n | 'Pi'\n | 'Qoder'\n | 'Qwen'\n | 'RooCode'\n | 'TraeCN'\n | 'Zencoder'\n | 'Neovate'\n | 'Pochi'\n | 'Other';\n\n console.log(`Selected platform: ${platform}`);\n\n const availableSkills = SKILLS;\n console.log('\\nAvailable skills:');\n availableSkills.forEach((s, i) => {\n console.log(`${i + 1}. ${s}`);\n });\n\n const skillsInput = await question(\n '\\nWhich skills do you want to install? (comma separated numbers, e.g. 1,2,3 or \"all\"): '\n );\n\n let selectedSkills: Skill[] = [];\n if (skillsInput.trim().toLowerCase() === 'all') {\n selectedSkills = [...availableSkills];\n } else {\n const indices = skillsInput\n .split(',')\n .map((s) => parseInt(s.trim()) - 1)\n .filter((i) => !isNaN(i) && i >= 0 && i < availableSkills.length);\n selectedSkills = indices.map((i) => availableSkills[i] as any);\n }\n\n if (selectedSkills.length === 0) {\n console.log('No valid skills selected. Exiting.');\n rl.close();\n return;\n }\n\n console.log(`Installing skills: ${selectedSkills.join(', ')}...`);\n const result = await installSkills(process.cwd(), platform, selectedSkills);\n console.log(result);\n } catch (error) {\n console.error('Error:', error);\n } finally {\n rl.close();\n }\n};\n"],"mappings":"sHAKA,MAAa,EAAyB,GAA4B,CAChE,EAAO,aACL,0BACA,CACE,MAAO,0BACP,YACE,uNACF,YAAa,CACX,SAAU,EACP,KAAK,6QAoCL,CAAC,CACD,SAAS,qCAAqC,CACjD,OAAQ,EAAE,MAAM,EAAE,KAAK,EAAO,CAAC,CAAC,SAAS,4BAA4B,CACrE,YAAa,EACV,QAAQ,CACR,UAAU,CACV,SACC,gEACD,CACJ,CACF,CACD,MAAO,CAAE,WAAU,SAAQ,iBAAkB,CAC3C,GAAI,CAQF,MAAO,CACL,QAAS,CACP,CACE,KAAM,OACN,KAVU,MAAM,EADT,GAAe,QAAQ,KAAK,CAGvC,EACA,EACD,CAOI,CACF,CACF,OACM,EAAO,CACd,MAAO,CACL,QAAS,CACP,CACE,KAAM,OACN,KAAM,6BAA6B,aAAiB,MAAQ,EAAM,QAAU,OAAO,EAAM,GAC1F,CACF,CACD,QAAS,GACV,GAGN,EAGU,EAAsB,SAA2B,CAC5D,IAAM,EAAK,EAAS,gBAAgB,CAClC,MAAO,QAAQ,MACf,OAAQ,QAAQ,OACjB,CAAC,CAEI,EAAY,GAChB,IAAI,QAAS,GAAY,EAAG,SAAS,EAAO,EAAQ,CAAC,CAEvD,GAAI,CACF,QAAQ,IAAI,0BAA0B,CACtC,QAAQ,IAAI,0BAA0B,CAEtC,IAAM,EAAgB,MAAM,EAC1B,8HACD,CACK,EAAY,6QAoCjB,CAAC,KAAM,GAAM,EAAE,aAAa,GAAK,EAAc,MAAM,CAAC,aAAa,CAAC,EACnE,QAqCF,QAAQ,IAAI,sBAAsB,IAAW,CAE7C,IAAM,EAAkB,EACxB,QAAQ,IAAI;mBAAsB,CAClC,EAAgB,SAAS,EAAG,IAAM,CAChC,QAAQ,IAAI,GAAG,EAAI,EAAE,IAAI,IAAI,EAC7B,CAEF,IAAM,EAAc,MAAM,EACxB;uFACD,CAEG,EAA0B,EAAE,CAWhC,GAVA,AAOE,EAPE,EAAY,MAAM,CAAC,aAAa,GAAK,MACtB,CAAC,GAAG,EAAgB,CAErB,EACb,MAAM,IAAI,CACV,IAAK,GAAM,SAAS,EAAE,MAAM,CAAC,CAAG,EAAE,CAClC,OAAQ,GAAM,CAAC,MAAM,EAAE,EAAI,GAAK,GAAK,EAAI,EAAgB,OAAO,CAC1C,IAAK,GAAM,EAAgB,GAAU,CAG5D,EAAe,SAAW,EAAG,CAC/B,QAAQ,IAAI,qCAAqC,CACjD,EAAG,OAAO,CACV,OAGF,QAAQ,IAAI,sBAAsB,EAAe,KAAK,KAAK,CAAC,KAAK,CACjE,IAAM,EAAS,MAAM,EAAc,QAAQ,KAAK,CAAE,EAAU,EAAe,CAC3E,QAAQ,IAAI,EAAO,OACZ,EAAO,CACd,QAAQ,MAAM,SAAU,EAAM,QACtB,CACR,EAAG,OAAO"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/mcp",
3
- "version": "8.1.2",
3
+ "version": "8.1.3",
4
4
  "private": false,
5
5
  "description": "Intlayer MCP server. Handle MCP to help IDE to use Intlayer. It build, fill, pull, push, dictionaries",
6
6
  "keywords": [
@@ -96,19 +96,19 @@
96
96
  "typecheck": "tsc --noEmit --project tsconfig.types.json"
97
97
  },
98
98
  "dependencies": {
99
- "@intlayer/api": "8.1.2",
100
- "@intlayer/chokidar": "8.1.2",
101
- "@intlayer/cli": "8.1.2",
102
- "@intlayer/config": "8.1.2",
99
+ "@intlayer/api": "8.1.3",
100
+ "@intlayer/chokidar": "8.1.3",
101
+ "@intlayer/cli": "8.1.3",
102
+ "@intlayer/config": "8.1.3",
103
103
  "@intlayer/docs": "8.1.2",
104
- "@intlayer/types": "8.1.2",
104
+ "@intlayer/types": "8.1.3",
105
105
  "@modelcontextprotocol/sdk": "1.25.3",
106
106
  "dotenv": "17.3.1",
107
107
  "express": "5.2.1",
108
108
  "zod": "4.3.6"
109
109
  },
110
110
  "devDependencies": {
111
- "@intlayer/types": "8.1.2",
111
+ "@intlayer/types": "8.1.3",
112
112
  "@modelcontextprotocol/inspector": "0.19.0",
113
113
  "@types/express": "5.0.6",
114
114
  "@types/node": "25.2.3",