{"id":28443326,"url":"https://github.com/simplelocalize/simplelocalize-mcp-server","last_synced_at":"2025-07-17T15:36:09.961Z","repository":{"id":296995231,"uuid":"995255214","full_name":"simplelocalize/simplelocalize-mcp-server","owner":"simplelocalize","description":"Interact with the SimpleLocalize API using AI assistants like Github Copilot, Claude, or in AI-powered IDEs like Cursor AI.","archived":false,"fork":false,"pushed_at":"2025-06-03T13:19:27.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-09T15:04:28.491Z","etag":null,"topics":["cursor-ai","i18n","llm","mcp","mcp-server","modelcontextprotocol","typescript"],"latest_commit_sha":null,"homepage":"https://simplelocalize.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplelocalize.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-03T07:48:49.000Z","updated_at":"2025-06-03T13:19:28.000Z","dependencies_parsed_at":"2025-06-03T20:17:11.142Z","dependency_job_id":"3ca25177-74b3-4393-ba7a-c5e336da133d","html_url":"https://github.com/simplelocalize/simplelocalize-mcp-server","commit_stats":null,"previous_names":["simplelocalize/simplelocalize-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simplelocalize/simplelocalize-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplelocalize%2Fsimplelocalize-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplelocalize%2Fsimplelocalize-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplelocalize%2Fsimplelocalize-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplelocalize%2Fsimplelocalize-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplelocalize","download_url":"https://codeload.github.com/simplelocalize/simplelocalize-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplelocalize%2Fsimplelocalize-mcp-server/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265623187,"owners_count":23800115,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cursor-ai","i18n","llm","mcp","mcp-server","modelcontextprotocol","typescript"],"created_at":"2025-06-06T07:11:18.121Z","updated_at":"2025-07-17T15:36:09.945Z","avatar_url":"https://github.com/simplelocalize.png","language":"TypeScript","funding_links":[],"categories":["🤖 AI/ML"],"sub_categories":[],"readme":"# MCP Server for SimpleLocalize\n\n[SimpleLocalize](https://www.simplelocalize.io/?utm_source=dx\u0026utm_medium=simplelocalize-mcp-server) is the developer-first translation management system.\n\nThis is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) server that provides tools for interacting with the SimpleLocalize API.\n\n## Features (Tools)\n\n- Create translation key\n- Update translations\n- Get all translation keys\n- Get translation key details\n- Get tags\n- Create tag\n- Get languages\n- Create languages\n- Get translations\n\nFeel free to add more tools by making a pull request or [creating a feature request](https://github.com/simplelocalize/simplelocalize-mcp-server/issues/new).\n\n## Installation\n\nTo use the MCP server, you'll need an API key. You can create and manage API keys in **SimpleLocalize \u003e Settings \u003e Credentials**:\n\nTo run the server in a client like Claude Desktop, Cursor or Windsurf, add the following to your MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"simplelocalize\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@simplelocalize/simplelocalize-mcp\", \"--api-key=SIMPLELOCALIZE_API_KEY\"]\n    }\n  }\n}\n```\n\nReplace `SIMPLELOCALIZE_API_KEY` with your API key\n\nFor detailed setup guides, see:\n\n- [Cursor AI](https://docs.cursor.com/context/model-context-protocol)\n- [Visual Studio Code](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)\n- [GitHub Copilot](https://github.blog/changelog/2025-05-19-agent-mode-and-mcp-support-for-copilot-in-jetbrains-eclipse-and-xcode-now-in-public-preview/)\n- [Claude Desktop](https://modelcontextprotocol.io/quickstart/user)\n- [Windsurf](https://docs.codeium.com/windsurf/mcp)\n\n## Development\n\n1. Install dependencies:\n\n   ```bash\n   pnpm install\n   ```\n\n2. Build the server:\n\n   ```bash\n   pnpm build\n   ```\n\n3. Update client to use the local build:\n   ```json\n   {\n     \"mcpServers\": {\n       \"simplelocalize\": {\n         \"command\": \"node\",\n         \"args\": [\"path/to/simplelocalize-mcp-server/build/index.js\"],\n         \"env\": {\n           \"SIMPLELOCALIZE_API_KEY\": \"your_api_key\",\n         }\n       }\n     }\n   }\n   ```\n\n## Debugging\n\nTo debug the MCP server, you can use the MCP Inspector tool:\n\n1. Run the server with the inspector:\n\n   ```bash\n   pnpm inspector\n   ```\n\n2. Open the provided URL in your browser to view and debug the MCP requests and responses.\n\n3. Include the `--api-key` argument.\n\n## Learn more\n\n- [SimpleLocalize developer docs](https://simplelocalize.io/docs/?utm_source=dx\u0026utm_medium=simplelocalize-mcp-server)\n- [SimpleLocalize API reference](https://simplelocalize.io/docs/api/get-started/?utm_source=dx\u0026utm_medium=simplelocalize-mcp-server)\n- [Sign up for SimpleLocalize](https://simplelocalize.io/register/?utm_source=dx\u0026utm_medium=simplelocalize-mcp-server)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplelocalize%2Fsimplelocalize-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplelocalize%2Fsimplelocalize-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplelocalize%2Fsimplelocalize-mcp-server/lists"}