@i18n-agent/mcp-client 1.13.0 ā 1.14.0
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/.claude-plugin/marketplace.json +41 -0
- package/.claude-plugin/plugin.json +34 -0
- package/README.md +17 -0
- package/package.json +8 -7
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "i18n-agent",
|
|
4
|
+
"version": "1.14.0",
|
|
5
|
+
"owner": {
|
|
6
|
+
"name": "FatCouple OĆ",
|
|
7
|
+
"email": "support@i18nagent.ai"
|
|
8
|
+
},
|
|
9
|
+
"metadata": {
|
|
10
|
+
"description": "Professional AI-powered translation service for Claude Code with 48 languages support",
|
|
11
|
+
"version": "1.14.0"
|
|
12
|
+
},
|
|
13
|
+
"plugins": [
|
|
14
|
+
{
|
|
15
|
+
"name": "i18n-agent",
|
|
16
|
+
"source": ".",
|
|
17
|
+
"description": "š Professional translation service with context-aware translations, file translation (JSON, YAML, CSV, Markdown), credit tracking, and 48 language support with regional variants",
|
|
18
|
+
"version": "1.14.0",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "FatCouple OĆ",
|
|
21
|
+
"email": "support@i18nagent.ai"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://i18nagent.ai",
|
|
24
|
+
"repository": "https://github.com/i18n-agent/mcp-client",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"keywords": [
|
|
27
|
+
"i18n",
|
|
28
|
+
"translation",
|
|
29
|
+
"mcp",
|
|
30
|
+
"claude",
|
|
31
|
+
"ai",
|
|
32
|
+
"internationalization",
|
|
33
|
+
"localization",
|
|
34
|
+
"multilingual",
|
|
35
|
+
"productivity"
|
|
36
|
+
],
|
|
37
|
+
"category": "productivity",
|
|
38
|
+
"tags": ["translation", "i18n", "localization", "multilingual"]
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "i18n-agent",
|
|
3
|
+
"description": "š i18n-agent MCP Client - 48 languages, AI-powered translation for Claude Code. Professional translation service with context-aware translations, file translation support, and 48 language variants.",
|
|
4
|
+
"version": "1.14.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "FatCouple OĆ",
|
|
7
|
+
"email": "support@i18nagent.ai"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://i18nagent.ai",
|
|
10
|
+
"repository": "https://github.com/i18n-agent/mcp-client",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"i18n",
|
|
14
|
+
"translation",
|
|
15
|
+
"mcp",
|
|
16
|
+
"claude",
|
|
17
|
+
"ai",
|
|
18
|
+
"internationalization",
|
|
19
|
+
"localization",
|
|
20
|
+
"multilingual"
|
|
21
|
+
],
|
|
22
|
+
"category": "productivity",
|
|
23
|
+
"mcpServers": {
|
|
24
|
+
"i18n-agent": {
|
|
25
|
+
"command": "node",
|
|
26
|
+
"args": ["${CLAUDE_PLUGIN_ROOT}/i18n-agent.js"],
|
|
27
|
+
"env": {
|
|
28
|
+
"MCP_SERVER_URL": "https://mcp.i18nagent.ai",
|
|
29
|
+
"API_KEY": ""
|
|
30
|
+
},
|
|
31
|
+
"disabled": false
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
package/README.md
CHANGED
|
@@ -25,6 +25,23 @@ i18n-agent
|
|
|
25
25
|
|
|
26
26
|
**Note:** Global installation is required due to npm bin naming limitations. The installer will detect all available AI IDEs and configure them automatically.
|
|
27
27
|
|
|
28
|
+
### Claude Code Marketplace Installation
|
|
29
|
+
|
|
30
|
+
For Claude Code users, you can install directly from the marketplace:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
/plugin marketplace add i18n-agent/mcp-client
|
|
34
|
+
/plugin install i18n-agent@i18n-agent
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Then set your API key:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
export API_KEY=your-api-key-here
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Restart Claude Code and you're ready to go!
|
|
44
|
+
|
|
28
45
|
## š Setup API Key
|
|
29
46
|
|
|
30
47
|
1. **Get your API key** from [app.i18nagent.ai](https://app.i18nagent.ai)
|
package/package.json
CHANGED
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i18n-agent/mcp-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "š i18n-agent MCP Client - 48 languages, AI-powered translation for Claude, Claude Code, Cursor, VS Code, Codex. Get API key at https://app.i18nagent.ai",
|
|
5
5
|
"main": "i18n-agent.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"i18n-agent": "install.js"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"install": "node install.js",
|
|
12
|
-
"test": "node test.js",
|
|
13
|
-
"postinstall": "echo '\nš i18n-agent MCP Client installed successfully!\nš” Run: i18n-agent (if installed globally) or node install.js\n'"
|
|
14
|
-
},
|
|
15
10
|
"repository": {
|
|
16
11
|
"type": "git",
|
|
17
12
|
"url": "git+https://github.com/i18n-agent/mcp-client.git"
|
|
@@ -45,11 +40,17 @@
|
|
|
45
40
|
"i18n-agent.js",
|
|
46
41
|
"namespace-detector.js",
|
|
47
42
|
"install.js",
|
|
43
|
+
".claude-plugin/",
|
|
48
44
|
"README.md",
|
|
49
45
|
"LICENSE",
|
|
50
46
|
"CONTRIBUTING.md"
|
|
51
47
|
],
|
|
52
48
|
"publishConfig": {
|
|
53
49
|
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"install": "node install.js",
|
|
53
|
+
"test": "node test.js",
|
|
54
|
+
"postinstall": "echo '\nš i18n-agent MCP Client installed successfully!\nš” Run: i18n-agent (if installed globally) or node install.js\n'"
|
|
54
55
|
}
|
|
55
|
-
}
|
|
56
|
+
}
|