Ask your question and get a summary of the document by referencing this page and the AI provider of your choice
Version History
- "Add set up of ChatGPT"v5.5.127/11/2025
- "Add set up of Claude Desktop"v5.5.127/10/2025
- "Add Streamable HTTP transport and distant server"v5.5.127/10/2025
- "Init history"v5.5.106/29/2025
If you have an idea for improving this documentation, please feel free to contribute by submitting a pull request on GitHub.
GitHub link to the documentationCopy doc Markdown to clipboard
Intlayer MCP Server
The Intlayer MCP (Model Context Protocol) Server provides AI-powered IDE assistance tailored for the Intlayer ecosystem.
Where can I use it?
- On modern developer environments like Cursor, VS Code, and any IDE supporting the MCP protocol.
- On your favorite AI assistant like Claude Desktop, Gemini, ChatGPT, etc.
Why Use the Intlayer MCP Server?
By enabling the Intlayer MCP Server in your IDE, you unlock:
Context-Aware Documentation The MCP server loads and exposes the documentation of Intlayer. To speed up your set up, your migrations, etc. This ensures that code suggestions, command options, and explanations are always up to date and relevant.
Smart CLI Integration Access and run Intlayer CLI commands directly from your IDE interface. Using the MCP server, you can let your AI assistant run commands like
intlayer dictionaries buildto update your dictionaries, orintlayer dictionaries fillto fill your missing translations.View the full list of commands and options in the Intlayer CLI documentation.
Local server (stdio) vs Remote server (Streamable HTTP)
The MCP server can be used in two ways:
- Local server (stdio)
- Remote server (Streamable HTTP)
Local server (stdio) (recommended)
Intlayer provides a NPM package that can be installed locally on your machine. It can be installed in your favorite IDE, as VS Code, Cursor, as well as your locale assistant application, as ChatGPT, Claude Desktop, etc.
This server is the recommended way to use the MCP server. As it integrates all the features of the MCP server, including the CLI tools.
Remote server (Streamable HTTP)
The MCP server can also be used remotely, using the Streamable HTTP transport method. This server is hosted by Intlayer, and is available at https://mcp.intlayer.org. This server can be accessed publicly, without any authentication, and is free to use.
Note that the remote server does not integrate CLI tools, AI autocompletion, etc. The distant server is only for interaction with the documentation to help your AI assistant with the Intlayer ecosystem.
Due to server hosting costs, the availability of the remote server cannot be guaranteed. We limit the number of simultaneous connections. We recommend using the local server (stdio) transport method for the most reliable experience.
Setup via Intlayer CLI (recommended)
Intlayer provides a CLI command to automatically configure the MCP server in your project.
Copy the code to the clipboard
npx intlayer init mcpThis command will:
- Ask you which platform you are using (Cursor, VS Code, Claude Desktop, etc.).
- Ask you which transport method you want to use (Local server (stdio) or Remote server (Streamable HTTP)).
- Automatically update your configuration file (e.g.,
.cursor/mcp.json,.vscode/mcp.json, or the global Claude Desktop config).
Setup via Intlayer VS Code extension
- Open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P).
- Type
Intlayer: Setup AI Agent Skills - Pick the platform you use (e.g.
VS Code,Cursor,Windsurf,OpenCode,Claude Code,GitHub Copilot Workspace, etc.). - Pick the MCP to install (stdio, Streamable HTTP)
- Press Enter.
Setup in Cursor
Follow the official documentation to configure the MCP server in Cursor.
In your project root, add the following .cursor/mcp.json configuration file:
Local server (stdio) (recommended)
Copy the code to the clipboard
{ "mcpServers": { "intlayer": { "command": "npx", "args": ["-y", "@intlayer/mcp"] } }}Remote server (Streamable HTTP)
For connecting to a remote Intlayer MCP server using Streamable HTTP, you can configure your MCP client to connect to the hosted service.
Copy the code to the clipboard
{ "mcpServers": { "intlayer-sse": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://mcp.intlayer.org"] } }}This tells your IDE to launch the Intlayer MCP server using npx, ensuring it always uses the latest available version unless you pin it.
Setup in VS Code
Follow the official documentation to configure the MCP server in VS Code.
To use the Intlayer MCP Server with VS Code, you need to configure it in your workspace or user settings.
Local server (stdio) (recommended)
Create a .vscode/mcp.json file in your project root:
Copy the code to the clipboard
{ "servers": { "intlayer": { "type": "stdio", "command": "npx", "args": ["-y", "@intlayer/mcp"] } }}Remote server (Streamable HTTP)
For connecting to a remote Intlayer MCP server using Streamable HTTP, you can configure your MCP client to connect to the hosted service.
Copy the code to the clipboard
{ "servers": { "intlayer-sse": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://mcp.intlayer.org"] } }}Set Up in ChatGPT
Remote server (Streamable HTTP)
Follow the official documentation to configure the MCP server in ChatGPT.
- Go to the promt dashboard
- Click on
+ Create - Click on
Tools (Create or +) - Select
MCP Server - Click on
Add new Fill the following fields:
- URL:
https://mcp.intlayer.org - Label:
Intlayer MCP Server - Name:
intlayer-mcp-server - Authentication:
None
- URL:
Click on
Save
Set Up in Claude Desktop
Follow the official documentation to configure the MCP server in Claude Desktop.
Path of the config file:
- macOS:
~/Library/Application\ Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Local server (stdio) (recommended)
Copy the code to the clipboard
{ "mcpServers": { "intlayer": { "command": "npx", "args": ["-y", "@intlayer/mcp"] } }}Remote server (Streamable HTTP)
Copy the code to the clipboard
{ "mcpServers": { "intlayer-sse": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://mcp.intlayer.org"] } }}Using the MCP Server via CLI
You can also run the Intlayer MCP server directly from the command line for testing, debugging, or integration with other tools.
Copy the code to the clipboard
# Install globallynpm install -g @intlayer/mcp# Or use directly with npx (recommended)npx @intlayer/mcp