@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/package.json CHANGED
@@ -1,29 +1,52 @@
1
1
  {
2
2
  "name": "@i18n-agent/mcp-client",
3
- "version": "1.0.0",
4
- "description": "Easy installation and setup of i18n-agent MCP client for AI development environments",
5
- "main": "index.js",
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-mcp": "index.js"
7
+ "i18n-agent-install": "./install.js"
8
8
  },
9
+ "type": "module",
9
10
  "scripts": {
10
- "start": "node index.js"
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-code",
17
- "gemini",
23
+ "claude",
18
24
  "cursor",
19
- "ai"
25
+ "vscode",
26
+ "ai",
27
+ "internationalization",
28
+ "localization"
20
29
  ],
21
- "author": "i18n Agent Team",
30
+ "author": "FatCouple OÜ",
22
31
  "license": "MIT",
23
- "repository": {
24
- "type": "git",
25
- "url": "https://github.com/i18n-agent/mcp-client.git"
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);