Skip to content

Commit 065f261

Browse files
author
Hermes Agent
committed
docs: translate README to French
1 parent 92ecb3d commit 065f261

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
# Tiger Memory MCP Server
22

3-
A simple memory system designed to allow LLMs to store and retrieve information. This provides some focused tools to LLMs via the [Model Context Protocol](https://modelcontextprotocol.io/introduction).
3+
Un systeme de memoire simple concu pour permettre aux LLM de stocker et recuperer des informations. Il fournit des outils cibles aux LLM via le [Model Context Protocol](https://modelcontextprotocol.io/introduction).
44

55
## API
66

7-
All methods are exposed as MCP tools and REST API endpoints.
7+
Toutes les methodes sont exposees en tant qu'outils MCP et points de terminaison d'API REST.
88

9-
## Development
9+
## Developpement
1010

11-
Cloning and running the server locally.
11+
Cloner et lancer le serveur en local.
1212

1313
```bash
1414
git clone git@github.com:timescale/tiger-memory-mcp-server.git
1515
```
1616

17-
### Building
17+
### Compilation
1818

19-
Run `npm i` to install dependencies and build the project. Use `npm run watch` to rebuild on changes.
19+
Lancez `npm i` pour installer les dependances et compiler le projet. Utilisez `npm run watch` pour recompiler lors des changements.
2020

21-
Create a `.env` file based on the `.env.sample` file.
21+
Creez un fichier `.env` a partir du fichier `.env.sample`.
2222

2323
```bash
2424
cp .env.sample .env
2525
```
2626

27-
### Testing
27+
### Tests
2828

29-
The MCP Inspector is very handy.
29+
Le MCP Inspector est tres pratique.
3030

3131
```bash
3232
npm run inspector
3333
```
3434

35-
| Field | Value |
36-
| -------------- | --------------- |
37-
| Transport Type | `STDIO` |
38-
| Command | `node` |
39-
| Arguments | `dist/index.js` |
35+
| Champ | Valeur |
36+
| ----------------- | --------------- |
37+
| Type de transport | `STDIO` |
38+
| Commande | `node` |
39+
| Arguments | `dist/index.js` |
4040

41-
#### Testing in Claude Desktop
41+
#### Tests dans Claude Desktop
4242

43-
Create/edit the file `~/Library/Application Support/Claude/claude_desktop_config.json` to add an entry like the following, making sure to use the absolute path to your local `tiger-memory-mcp-server` project, and real database credentials.
43+
Creez ou modifiez le fichier `~/Library/Application Support/Claude/claude_desktop_config.json` pour ajouter une entree comme suit, en veillant a utiliser le chemin absolu vers votre projet local `tiger-memory-mcp-server` et de vraies informations d'identification pour la base de donnees.
4444

4545
```json
4646
{
@@ -63,15 +63,15 @@ Create/edit the file `~/Library/Application Support/Claude/claude_desktop_config
6363
}
6464
```
6565

66-
## Deployment
66+
## Deploiement
6767

68-
We use a Helm chart to deploy to Kubernetes. See the `chart/` directory for details.
68+
Nous utilisons un chart Helm pour le deploiement sur Kubernetes. Voir le repertoire `chart/` pour les details.
6969

70-
The service is accessible to other services in the cluster via the DNS name `tiger-memory-mcp-server.savannah-system.svc.cluster.local`.
70+
Le service est accessible aux autres services du cluster via le nom DNS `tiger-memory-mcp-server.savannah-system.svc.cluster.local`.
7171

72-
### Database setup
72+
### Configuration de la base de donnees
7373

74-
Creating the database user:
74+
Creation de l'utilisateur de base de donnees :
7575

7676
```sql
7777
CREATE USER tiger_memory WITH PASSWORD 'secret';
@@ -80,7 +80,7 @@ GRANT CREATE ON DATABASE tsdb TO tiger_memory;
8080

8181
### Secrets
8282

83-
Run the following to create the necessary sealed secrets. Be sure to fill in the correct values.
83+
Lancez la commande suivante pour creer les secrets scelles necessaires. Assurez-vous de renseigner les bonnes valeurs.
8484

8585
```bash
8686
kubectl -n savannah-system create secret generic tiger-memory-mcp-server-database \
@@ -105,4 +105,4 @@ kubectl -n savannah-system create secret generic tiger-memory-mcp-server-tailsca
105105
-o yaml | kubeseal -o yaml
106106
```
107107

108-
Update `./chart/values/dev.yaml` with the output.
108+
Mettez a jour `./chart/values/dev.yaml` avec la sortie.

0 commit comments

Comments
 (0)