JUHE API Marketplace
aymericzip avatar
MCP Server

intlayer

A MCP Server that enhance your IDE with AI

408
GitHub Stars
11/22/2025
Last Updated
No Configuration
Please check the documentation below.
  1. Home
  2. MCP Servers
  3. intlayer

README Documentation

Intlayer Logo

Intlayer : an Open-source, per-component i18n toolkit with AI-powered translation & CMS.


Docs • Next.js • React + Vite • CMS • Discord

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:

FeatureDescription
FeatureCross-Frameworks Support

Intlayer is compatible with all major frameworks and libraries, including Next.js, React, Vite, Vue.js, Nuxt, Preact, Express, and more.
FeatureJavaScript-Powered Content Management

Harness the flexibility of JavaScript to define and manage your content efficiently.

- Content declaration
FeaturePer-Locale Content Declaration File

Speed up your development by declaring your content once, before auto generation.

- Per-Locale Content Declaration File
FeatureType-Safe Environment

Leverage TypeScript to ensure your content definitions and code are error-free, while also benefiting from IDE autocompletion.

- TypeScript configuration
FeatureSimplified Setup

Get up and running quickly with minimal configuration. Adjust settings for internationalization, routing, AI, build, and content handling with ease.

- Explore Next.js integration
FeatureSimplified Content Retrieval

No need to call your t function for each piece of content. Retrieve all your content directly using a single hook.

- React integration
FeatureConsistent Server Component Implementation

Perfectly 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
FeatureOrganized Codebase

Keep 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
FeatureEnhanced Routing

Full support of app routing, adapting seamlessly to complex application structures, for Next.js, React, Vite, Vue.js, etc.

- Explore Next.js integration
FeatureMarkdown Support

Import 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
FeatureFree Visual Editor & CMS

A 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
FeatureTree-shakable Content

Tree-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
FeatureStatic Rendering

Doesn't block Static Rendering.

- Next.js integration
FeatureAI-Powered Translation

Transform 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
FeatureMCP Server Integration

Provides an MCP (Model Context Protocol) server for IDE automation, enabling seamless content management and i18n workflows directly within your development environment.

- MCP Server
FeatureVSCode Extension

Intlayer provides a VSCode extension to help you manage your content and translations, building your dictionaries, translating your content, and more.

- VSCode Extension
FeatureInteroperability

Allow interoperability with react-i18next, next-i18next, next-intl, and react-intl.

- Intlayer and react-intl
- Intlayer and next-intl
- Intlayer and next-i18next

📦 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.

📘 Get Started
  • Why Intlayer?
  • Introduction
⚙️ Concept
  • How Intlayer Works
  • Configuration
  • Intlayer CLI
  • Intlayer Editor
  • Intlayer CMS
  • Dictionary
    • Per-Locale Content Declaration File
    • Translation
    • Enumeration
    • Condition
    • Nesting
    • Markdown
    • Function Fetching
    • Insertion
    • File
🌐 Environment
  • Intlayer with Next.js 16
    • Next.js 15
    • Next.js 14 (App Router)
    • Next.js Page Router
  • React CRA
  • Vite + React
    • React-router-v7
    • Tanstack start
  • React Native
  • Lynx + React
  • Vite + Svelte
  • SvelteKit
  • Vite + Preact
  • Vite + Vue
  • Vite + Nuxt
  • Vite + Solid
  • Angular
  • Express
  • NestJS
📰 Blog
  • What is i18n
  • i18n and SEO
  • Intlayer and i18next
  • Intlayer and react-intl
  • Intlayer and next-intl

🌐 Readme in other languages

English • 简体中文 • Русский • 日本語 • Français • 한국어 • Español • Deutsch • العربية • Italiano • English (UK) • Português • हिन्दी • Türkçe

🤝 Community

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

  • Have a suggestion? Open an issue
  • Found a bug or improvement? Submit a PR
  • Need help or want to connect? Join our Discord

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!

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

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.ai
Copyright © 2025 - All rights reserved