
How to add Intlayer MCP Server to Claude Desktop
AI-powered IDE assistance for the Intlayer i18n ecosystem: docs, CLI, and dictionary management. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 14, 2026 ยท 767โ ยท stdio ยท no auth
Claude Desktop config for Intlayer MCP Server
npx -y @intlayer/mcp{
"mcpServers": {
"intlayer-mcp-server": {
"command": "npx",
"args": [
"-y",
"@intlayer/mcp"
]
}
}
}Setup steps
- 1Open Claude Desktop โ Settings โ Developer โ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the Intlayer MCP Server config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm Intlayer MCP Server's tools appear under the ๐ tools menu.
Before you start
- Node.js with npx available
- An MCP-capable client (Cursor, VS Code, Claude Desktop, Claude Code, ChatGPT, etc.)
- An Intlayer project (for CLI and dictionary/CMS tools)
What Intlayer MCP Server can do in Claude Desktop
get-doc-listGet the list of available Intlayer documentation entries.
get-docGet an Intlayer documentation entry by its key.
get-doc-by-slugGet an Intlayer documentation entry by its slug.
fetch-doc-chunksFetch chunks of Intlayer documentation for context.
review-doc-blocksReview documentation blocks.
intlayer-initInitialize Intlayer in the project.
intlayer-buildBuild the Intlayer dictionaries.
intlayer-fillFill missing translations in dictionaries.
Security
The local stdio server runs Intlayer CLI commands on your machine (build, fill, push, pull, extract) and can manage CMS dictionaries/organizations, so review actions before allowing them. The remote Streamable HTTP server at https://mcp.intlayer.org is public, unauthenticated, exposes only documentation tools, and its availability is not guaranteed.
Intlayer MCP Server + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Intlayer MCP Server config there under the "mcpServers" key and restart the client.
Is Intlayer MCP Server safe to use with Claude Desktop?
The local stdio server runs Intlayer CLI commands on your machine (build, fill, push, pull, extract) and can manage CMS dictionaries/organizations, so review actions before allowing them. The remote Streamable HTTP server at https://mcp.intlayer.org is public, unauthenticated, exposes only documentation tools, and its availability is not guaranteed.
Which clients are supported?
Any MCP-capable environment, including Cursor, VS Code, Claude Desktop, Claude Code, and AI assistants like Gemini and ChatGPT.
What is the difference between the local and remote servers?
The local stdio server (@intlayer/mcp) integrates all features including CLI and API tools and is recommended. The remote Streamable HTTP server at https://mcp.intlayer.org is public, unauthenticated, and free, but only exposes documentation tools and has no availability guarantee.
How do I set it up quickly?
Run `npx intlayer init mcp`, which asks for your platform and transport and updates the right config file (e.g. .cursor/mcp.json, .vscode/mcp.json, or the Claude Desktop config). You can also use the Intlayer VS Code extension or add the config block manually.