Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,57 @@ For more information, see the [official GitHub documentation](https://docs.githu

</details>

<details>
<summary><b>Install in Copilot CLI</b></summary>

1. Open the Copilot CLI MCP config file. The location is `~/.copilot/mcp-config.json` (where `~` is your home directory).
2. Add the following to the `mcpServers` object in your `mcp-config.json` file:

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

Or, for a local server:

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

If the `mcp-config.json` file does not exist, create it.

</details>

<details>
<summary><b>Install in LM Studio</b></summary>

Expand Down
48 changes: 48 additions & 0 deletions docs/README.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,54 @@ Füge die folgende Konfiguration zum Abschnitt `mcp` deiner Copilot Coding Agent

Weitere Informationen findest du in der [offiziellen GitHub-Dokumentation](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp).

### Installation im Copilot CLI

1. Öffne die MCP-Konfigurationsdatei von Copilot CLI. Der Ort ist `~/.copilot/mcp-config.json` (wobei `~` dein Home-Verzeichnis ist).
2. Füge Folgendes zum `mcpServers`-Objekt in deiner `mcp-config.json`-Datei hinzu:

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

Oder für einen lokalen Server:

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

Falls die `mcp-config.json`-Datei nicht existiert, erstelle sie.

### Docker verwenden

Wenn du den MCP-Server lieber in einem Docker-Container ausführen möchtest:
Expand Down
48 changes: 48 additions & 0 deletions docs/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,54 @@ Agrega la siguiente configuración a la sección `mcp` de tu archivo de configur

Para más información, consulta la [documentación oficial de GitHub](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp).

### Instalar en Copilot CLI

1. Abre el archivo de configuración MCP de Copilot CLI. La ubicación es `~/.copilot/mcp-config.json` (donde `~` es tu directorio home).
2. Agrega lo siguiente al objeto `mcpServers` en tu archivo `mcp-config.json`:

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

O, para un servidor local:

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

Si el archivo `mcp-config.json` no existe, créalo.

### Herramientas Disponibles

- `resolve-library-id`: Resuelve un nombre de una biblioteca general en un ID de biblioteca compatible con Context7.
Expand Down
48 changes: 48 additions & 0 deletions docs/README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,54 @@ Ajoutez la configuration suivante à la section `mcp` de votre fichier de config

Pour plus d'informations, consultez la [documentation officielle GitHub](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp).

### Installation dans Copilot CLI

1. Ouvrez le fichier de configuration MCP de Copilot CLI. L'emplacement est `~/.copilot/mcp-config.json` (où `~` est votre répertoire personnel).
2. Ajoutez ce qui suit à l'objet `mcpServers` dans votre fichier `mcp-config.json` :

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

Ou, pour un serveur local :

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

Si le fichier `mcp-config.json` n'existe pas, créez-le.

### Utilisation avec Docker

Si vous préférez exécuter le serveur MCP dans un conteneur Docker :
Expand Down
51 changes: 51 additions & 0 deletions docs/README.id-ID.md
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,57 @@ Tambahkan konfigurasi berikut ke bagian `mcp` file konfigurasi Copilot Coding Ag
Untuk informasi lebih lanjut, lihat [dokumentasi resmi GitHub](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp).
</details>

<details>
<summary><b>Instal di Copilot CLI</b></summary>

1. Buka file konfigurasi MCP Copilot CLI. Lokasinya adalah `~/.copilot/mcp-config.json` (di mana `~` adalah direktori home Anda).
2. Tambahkan yang berikut ke objek `mcpServers` di file `mcp-config.json` Anda:

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

Atau, untuk server lokal:

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

Jika file `mcp-config.json` tidak ada, buatlah.

</details>

<details>
<summary><b>Instal di Kiro</b></summary>
Lihat [Dokumentasi Protokol Konteks Model Kiro](https://kiro.dev/docs/mcp/configuration/) untuk detail.
Expand Down
48 changes: 48 additions & 0 deletions docs/README.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,54 @@ Aggiungi la seguente configurazione alla sezione `mcp` del file di configurazion

Per maggiori informazioni, consulta la [documentazione ufficiale GitHub](https://docs.github.com/en/enterprise-cloud@latest/copilot/how-tos/agents/copilot-coding-agent/extending-copilot-coding-agent-with-mcp).

### Installazione in Copilot CLI

1. Apri il file di configurazione MCP di Copilot CLI. La posizione è `~/.copilot/mcp-config.json` (dove `~` è la tua home directory).
2. Aggiungi quanto segue all'oggetto `mcpServers` nel tuo file `mcp-config.json`:

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

Oppure, per un server locale:

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

Se il file `mcp-config.json` non esiste, crealo.

### Utilizzo di Docker

Se preferisci eseguire il server MCP in un contenitore Docker:
Expand Down
51 changes: 51 additions & 0 deletions docs/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,57 @@ claude mcp add context7 -- npx -y @upstash/context7-mcp

</details>

<details>
<summary><b>Copilot CLI へのインストール</b></summary>

1. Copilot CLI MCP 設定ファイルを開きます。ファイルの場所は `~/.copilot/mcp-config.json`(`~` はホームディレクトリ)です。
2. `mcp-config.json` ファイルの `mcpServers` オブジェクトに以下を追加します:

```json
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "YOUR_API_KEY"
},
"tools": [
"get-library-docs",
"resolve-library-id"
]
}
}
}
```

または、ローカルサーバーの場合:

```json
{
"mcpServers": {
"context7": {
"type": "local",
"command": "npx",
"tools": [
"get-library-docs",
"resolve-library-id"
],
"args": [
"-y",
"@upstash/context7-mcp",
"--api-key",
"YOUR_API_KEY"
]
}
}
}
```

`mcp-config.json` ファイルが存在しない場合は、作成してください。

</details>

<details>
<summary><b>Docker を使用</b></summary>

Expand Down
Loading