You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-23Lines changed: 23 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,46 +1,46 @@
1
1
# Tiger Memory MCP Server
2
2
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).
4
4
5
5
## API
6
6
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.
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.
20
20
21
-
Create a `.env`file based on the`.env.sample` file.
21
+
Creez un fichier `.env`a partir du fichier`.env.sample`.
22
22
23
23
```bash
24
24
cp .env.sample .env
25
25
```
26
26
27
-
### Testing
27
+
### Tests
28
28
29
-
The MCP Inspector is very handy.
29
+
Le MCP Inspector est tres pratique.
30
30
31
31
```bash
32
32
npm run inspector
33
33
```
34
34
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`|
40
40
41
-
#### Testing in Claude Desktop
41
+
#### Tests dans Claude Desktop
42
42
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.
44
44
45
45
```json
46
46
{
@@ -63,15 +63,15 @@ Create/edit the file `~/Library/Application Support/Claude/claude_desktop_config
63
63
}
64
64
```
65
65
66
-
## Deployment
66
+
## Deploiement
67
67
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.
69
69
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`.
71
71
72
-
### Database setup
72
+
### Configuration de la base de donnees
73
73
74
-
Creating the database user:
74
+
Creation de l'utilisateur de base de donnees :
75
75
76
76
```sql
77
77
CREATEUSERtiger_memory WITH PASSWORD 'secret';
@@ -80,7 +80,7 @@ GRANT CREATE ON DATABASE tsdb TO tiger_memory;
80
80
81
81
### Secrets
82
82
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.
0 commit comments