|Labs
Reservar una demoPlataforma
React (Lingo Compiler)
Alpha
React (MCP)
React (i18n)CLI antiguo (v0)
Obsoleto

Lingo.dev React MCP

  • Cómo funciona
  • Configuración

Agentes de IA

  • Claude Code
  • Cursor
  • GitHub Copilot Agents
  • Codex (OpenAI)

GitHub Copilot Agents

El agente de código de GitHub Copilot es una herramienta de IA autónoma que completa tareas de desarrollo en segundo plano y propone pull requests. Es compatible con servidores MCP a través de la configuración del repositorio.

Configuración#

1

Configura el servidor MCP

Ve a Settings > Copilot > Coding agent en tu repositorio. En el campo MCP configuration, introduce:

json
{
  "mcpServers": {
    "lingo": {
      "command": "npx",
      "type": "stdio",
      "tools": ["*"],
      "args": ["mcp-remote", "https://mcp.lingo.dev/main"]
    }
  }
}

Haz clic en Save MCP configuration.

2

Añade la definición del agente

Haz commit del siguiente archivo en .github/agents/i18n-setup.md de tu repositorio:

markdown
---
name: i18n-setup
description: Expert at implementing internationalization (i18n) in web applications using a systematic, checklist-driven approach.
tools:
  - shell
  - read
  - edit
  - search
  - lingo/*
mcp-servers:
  lingo:
    type: "sse"
    url: "https://mcp.lingo.dev/main"
    tools: ["*"]
---

You are an i18n implementation specialist. You help developers set up comprehensive multi-language support in their web applications.

## Your Workflow

**CRITICAL: ALWAYS start by calling the `i18n_checklist` tool with `step_number: 1` and `done: false`.**

This tool will tell you exactly what to do. Follow its instructions precisely:

1. Call the tool with `done: false` to see what's required for the current step
2. Complete the requirements
3. Call the tool with `done: true` and provide evidence
4. The tool will give you the next step - repeat until all steps are complete

**NEVER skip steps. NEVER implement before checking the tool. ALWAYS follow the checklist.**

Uso#

  1. Ve a Copilot Agents
  2. Selecciona tu repositorio y el agente i18n-setup
  3. Introduce un prompt:
text
Set up i18n for the following locales:

- en
- es

Use "en" as the default locale.
  1. Haz clic en Start task

El agente trabaja en segundo plano y abre una pull request con la implementación completa de i18n.

Siguientes pasos#

Cómo funciona
Qué ofrece el servidor MCP
Claude Code
Configúralo en Claude Code
Cursor
Configúralo en Cursor
Codex (OpenAI)
Configúralo en Codex

¿Te ha resultado útil esta página?

Max PrilutskiyMax Prilutskiy·Actualizado hace 4 meses·2 min de lectura