@i18n-agent/mcp-client 1.0.0 ā 1.0.2
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/CONTRIBUTING.md +218 -0
- package/LICENSE +21 -0
- package/README.md +264 -0
- package/install.js +218 -0
- package/mcp-client.js +808 -0
- package/package.json +35 -12
- package/index.js +0 -8
package/package.json
CHANGED
|
@@ -1,29 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i18n-agent/mcp-client",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "MCP client for i18n-agent translation service - supports Claude, Cursor, VS Code, and other AI IDEs",
|
|
5
|
+
"main": "mcp-client.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"i18n-agent-
|
|
7
|
+
"i18n-agent-install": "./install.js"
|
|
8
8
|
},
|
|
9
|
+
"type": "module",
|
|
9
10
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
+
"install": "node install.js",
|
|
12
|
+
"test": "node test.js",
|
|
13
|
+
"postinstall": "echo '\nš i18n-agent MCP Client installed successfully!\nš” Run: npx @i18n-agent/mcp-client install\n'"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/i18n-agent/mcp-client.git"
|
|
11
18
|
},
|
|
12
19
|
"keywords": [
|
|
13
20
|
"i18n",
|
|
14
21
|
"translation",
|
|
15
22
|
"mcp",
|
|
16
|
-
"claude
|
|
17
|
-
"gemini",
|
|
23
|
+
"claude",
|
|
18
24
|
"cursor",
|
|
19
|
-
"
|
|
25
|
+
"vscode",
|
|
26
|
+
"ai",
|
|
27
|
+
"internationalization",
|
|
28
|
+
"localization"
|
|
20
29
|
],
|
|
21
|
-
"author": "
|
|
30
|
+
"author": "FatCouple OĆ",
|
|
22
31
|
"license": "MIT",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/i18n-agent/mcp-client/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://i18nagent.ai",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
38
|
+
"axios": "^1.6.0"
|
|
26
39
|
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=16.0.0"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"mcp-client.js",
|
|
45
|
+
"install.js",
|
|
46
|
+
"README.md",
|
|
47
|
+
"LICENSE",
|
|
48
|
+
"CONTRIBUTING.md"
|
|
49
|
+
],
|
|
27
50
|
"publishConfig": {
|
|
28
51
|
"access": "public"
|
|
29
52
|
}
|
package/index.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
console.log('ā ļø Please use: npx i18n-agent-mcp-client install');
|
|
4
|
-
console.log('š Documentation: https://github.com/i18n-agent/mcp-client');
|
|
5
|
-
console.log('');
|
|
6
|
-
console.log('This package redirects to the main installer.');
|
|
7
|
-
console.log('The scoped package @i18n-agent/mcp-client is a placeholder.');
|
|
8
|
-
process.exit(1);
|