localingos 0.1.41 → 1.0.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/MCP_DIRECTORY_SUBMISSION.md +97 -0
- package/package.json +14 -3
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# MCP Directory Submission Copy
|
|
2
|
+
|
|
3
|
+
Ready-to-paste content for listing Localingos on MCP directories.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## mcp.so
|
|
8
|
+
|
|
9
|
+
Submit via GitHub Issue: https://github.com/chatmcp/mcpso/issues/new
|
|
10
|
+
|
|
11
|
+
**Title:** Add Localingos — AI translation MCP server
|
|
12
|
+
|
|
13
|
+
**Body:**
|
|
14
|
+
|
|
15
|
+
### Server Name
|
|
16
|
+
Localingos
|
|
17
|
+
|
|
18
|
+
### Server URL / Repository
|
|
19
|
+
https://github.com/juhsis/Localingos (source)
|
|
20
|
+
https://www.npmjs.com/package/localingos (npm)
|
|
21
|
+
|
|
22
|
+
### Website
|
|
23
|
+
https://localingos.com
|
|
24
|
+
https://localingos.com/mcp (MCP-specific page)
|
|
25
|
+
|
|
26
|
+
### Description
|
|
27
|
+
AI-powered translation workflow for developers. Give your AI coding agent (Cursor, Claude Desktop, Copilot, Kiro) direct access to sync translations, search keys, and manage localization — without leaving the editor. Supports 56 languages, React, Next.js, Vue, Angular.
|
|
28
|
+
|
|
29
|
+
### Setup
|
|
30
|
+
|
|
31
|
+
**Local (stdio — built into the CLI):**
|
|
32
|
+
```bash
|
|
33
|
+
npm install -g localingos
|
|
34
|
+
```
|
|
35
|
+
```json
|
|
36
|
+
{
|
|
37
|
+
"mcpServers": {
|
|
38
|
+
"localingos": {
|
|
39
|
+
"command": "localingos",
|
|
40
|
+
"args": ["mcp-serve"]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
**Remote (no install needed):**
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"mcpServers": {
|
|
50
|
+
"localingos": {
|
|
51
|
+
"type": "streamable-http",
|
|
52
|
+
"url": "https://mcp.localingos.com"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Tools
|
|
59
|
+
| Tool | Description |
|
|
60
|
+
|---|---|
|
|
61
|
+
| localingos_sync | Push source strings & pull translations |
|
|
62
|
+
| localingos_push | Push source strings only |
|
|
63
|
+
| localingos_pull | Pull translations and write locale files |
|
|
64
|
+
| localingos_status | Show family, locales, key counts |
|
|
65
|
+
| localingos_search | Search keys/text across source strings |
|
|
66
|
+
| localingos_extract | Run extraction script |
|
|
67
|
+
|
|
68
|
+
### Category
|
|
69
|
+
Developer Tools / Localization / i18n
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Smithery
|
|
74
|
+
|
|
75
|
+
Submit via https://smithery.ai — sign in, create namespace, publish server.
|
|
76
|
+
|
|
77
|
+
**Display Name:** Localingos
|
|
78
|
+
**Slug:** localingos
|
|
79
|
+
**Description:** AI-powered translation workflow — sync, push, pull, and search translations across 56 languages directly from your AI coding agent. Local (stdio) and remote (streamable-http) modes.
|
|
80
|
+
**Tags:** i18n, translation, localization, developer-tools, mcp
|
|
81
|
+
**Website:** https://localingos.com
|
|
82
|
+
**Repository:** https://github.com/juhsis/Localingos
|
|
83
|
+
**npm:** https://www.npmjs.com/package/localingos
|
|
84
|
+
|
|
85
|
+
**Remote URL:** https://mcp.localingos.com
|
|
86
|
+
**Transport:** streamable-http
|
|
87
|
+
|
|
88
|
+
**Local command:** `localingos mcp-serve`
|
|
89
|
+
**Install:** `npm install -g localingos`
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Also consider listing on
|
|
94
|
+
|
|
95
|
+
- **MCP Registry (official):** https://github.com/modelcontextprotocol/registry — the official Anthropic-backed registry. Submit via PR.
|
|
96
|
+
- **Glama.ai:** https://glama.ai/mcp/servers — another popular directory. Submit via their web form.
|
|
97
|
+
- **PulseMCP:** https://www.pulsemcp.com — curated MCP directory. Submit via web form.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "localingos",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "CLI
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI-powered translation CLI — localize your app into 56 languages with one command. Supports React, Next.js, Vue, Angular. MCP server included.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -12,10 +12,21 @@
|
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"i18n",
|
|
15
|
+
"internationalization",
|
|
15
16
|
"translation",
|
|
16
17
|
"localization",
|
|
18
|
+
"l10n",
|
|
17
19
|
"cli",
|
|
18
|
-
"mcp"
|
|
20
|
+
"mcp",
|
|
21
|
+
"model-context-protocol",
|
|
22
|
+
"ai-translation",
|
|
23
|
+
"react-i18next",
|
|
24
|
+
"next-intl",
|
|
25
|
+
"react-intl",
|
|
26
|
+
"json-i18n",
|
|
27
|
+
"locale",
|
|
28
|
+
"multilingual",
|
|
29
|
+
"bedrock"
|
|
19
30
|
],
|
|
20
31
|
"license": "MIT",
|
|
21
32
|
"dependencies": {
|