1. Conduid
  2. Developer Tools
  3. aymericzip/intlayer
MCP server · Developer Tools

aymericzip/intlayer

Per-component Internationalisation solution for JS application. Type-Safe. Translate with AI. Edit Visually.

87Excellent

Scored yesterday · breakdown

About aymericzip/intlayer

aymericzip/intlayer is an MCP server published by aymericzip in the Developer Tools category: per-component Internationalisation solution for JS application. Type-Safe. Translate with AI. Edit Visually. It has been installed 0 times through Conduid.

The repository has 613 stars and 103 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx intlayer

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about aymericzip/intlayer

Powered by Claude · Grounded in docs

I know everything about aymericzip/intlayer. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v9.0.1v9.0.1 · 24 Jul 2026See the assets to download this version and install.
v9.0.0-canary.11v9.0.0-canary.11 · 1 Jul 2026See the assets to download this version and install.
v8.12.2v8.12.2 · 5 Jun 2026See the assets to download this version and install.
v8.9.8v8.9.8 · 18 May 2026See the assets to download this version and install.
v8.9.48.9.4 · 11 May 2026

README

Watch the video

What is Intlayer?

Most i18n libraries are either too complex, too rigid, or not built for modern frameworks.

Intlayer is a modern i18n solution for web and mobile apps.
It’s framework-agnostic, AI-powered, and includes a free CMS & visual editor.

With per-locale content files, TypeScript autocompletion, tree-shakable dictionaries, and CI/CD integration, Intlayer makes internationalization faster, cleaner, and smarter.

Keys benefits of Intlayer:

Feature Description
Cross-Frameworks SupportIntlayer is compatible with all major frameworks and libraries, including Next.js, React, Vite, Vue.js, Nuxt, Preact, Express, and more.
JavaScript-Powered Content ManagementHarness the flexibility of JavaScript to define and manage your content efficiently. - Content declaration
Per-Locale Content Declaration FileSpeed up your development by declaring your content once, before auto generation. - Per-Locale Content Declaration File
CompilerThe Intlayer Compiler extract automatically the content from the components and generate the dictionary files. - Compiler
Type-Safe EnvironmentLeverage TypeScript to ensure your content definitions and code are error-free, while also benefiting from IDE autocompletion. - TypeScript configuration
Simplified SetupGet up and running quickly with minimal configuration. Adjust settings for internationalization, routing, AI, build, and content handling with ease. - Explore Next.js integration
Simplified Content RetrievalNo need to call your t function for each piece of content. Retrieve all your content directly using a single hook. - React integration
Consistent Server Component ImplementationPerfectly suited for Next.js server components, use the same implementation for both client and server components, no need to pass your t function across each server component. - Server Components
Organized CodebaseKeep your codebase more organized: 1 component = 1 dictionary in the same folder. Translations close to their respective components, enhance maintainability and clarity. - How Intlayer works
Enhanced RoutingFull support of app routing, adapting seamlessly to complex application structures, for Next.js, React, Vite, Vue.js, etc. - Explore Next.js integration
Markdown SupportImport and interpret, locale files and remote Markdown for multilingual content like privacy policies, documentation, etc. Interpret and make Markdown metadata accessible in your code. - Content files
Free Visual Editor & CMSA free visual editor and CMS are available for content writers, removing the need for a localization platform. Keep your content synchronized using Git, or externalize it totally or partially with the CMS. - Intlayer Editor - Intlayer CMS
Tree-shakable ContentTree-shakable content, reducing the size of the final bundle. Loads content per component, excluding any unused content from your bundle. Supports lazy loading to enhance app loading efficiency. - App build optimization
Static RenderingDoesn't block Static Rendering. - Next.js integration
AI-Powered TranslationTransform your website into 231 languages with just one click using Intlayer's advanced AI-powered translation tools using your own AI provider / API key. - CI/CD integration - Intlayer CLI - Auto fill
MCP Server IntegrationProvides an MCP (Model Context Protocol) server for IDE automation, enabling seamless content management and i18n workflows directly within your development environment. - MCP Server
VSCode ExtensionIntlayer provides a VSCode extension to help you manage your content and translations, building your dictionaries, translating your content, and more. - VSCode Extension
InteroperabilityAllow interoperability with react-i18next, next-i18next, next-intl, react-intl, vue-i18n. - Intlayer and react-intl - Intlayer and next-intl - Intlayer and next-i18next - Intlayer and vue-i18n

📦 Installation

Start your journey with Intlayer today and experience a smoother, more powerful approach to internationalization.

npm install intlayer react-intlayer

⚡ Quick Start (Next.js)

// intlayer.config.ts
import { Locales, type IntlayerConfig } from "intlayer";

const config: IntlayerConfig = {
  internationalization: {
    locales: [Locales.ENGLISH, Locales.FRENCH, Locales.SPANISH],
    defaultLocale: Locales.ENGLISH,
  },
};

export default config;
// app/home.content.ts
import { t, type Dictionary } from "intlayer";

const content = {
  key: "home",
  content: {
    title: t({
      en: "Home",
      fr: "Accueil",
      es: "Inicio",
    }),
  },
} satisfies Dictionary;

export default content;
// app/page.tsx
import { useIntlayer } from "react-intlayer";

const HomePage = () => {
  const { title } = useIntlayer("home");

  return <h1>{title}</h1>;
};

Get the full guide →

🎥 Live tutorial on YouTube

How to Internationalize your application using Intlayer

Table of Contents

Explore our comprehensive documentation to get started with Intlayer and learn how to integrate it into your projects.

🌐 Readme in other languages

🤝 Community

Intlayer is built with and for the community and we’d love your input!

You can also follow us on :

Contribution

For more detailed guidelines on contributing to this project, please refer to the CONTRIBUTING.md file. It contains essential information on our development process, commit message conventions, and release procedures. Your contributions are valuable to us, and we appreciate your efforts in making this project better!

Contribute on GitHub, GitLab, or Bitbucket.

Thank You for the Support

If you like Intlayer, give us a ⭐ on GitHub. It helps others discover the project! See why GitHub Stars matter.

Star History Chart

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About aymericzip/intlayer

How do I install aymericzip/intlayer?

Run npx intlayer, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is aymericzip/intlayer safe to use with an AI agent?

Its trust score is 87 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is aymericzip/intlayer still maintained?

Yes — the latest release is v9.0.1 (24 Jul 2026), and the last commit was 6 months ago. The repository has 613 stars and 0 open issues.