Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"gilbert": {
"env": {
"GILBERT_API_KEY": "glbrt_live_XXXXXXXXXXXXXXXXXXXXXXXX"
},
"args": [
"-y",
"gilbert-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Serveur Model Context Protocol (MCP) officiel de Gilbert.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'GILBERT_API_KEY' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked GILBERT_API_KEY against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for io.github.HugoF1234/gilbert-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Serveur Model Context Protocol (MCP) officiel de Gilbert.
Permet à Claude Desktop, Claude Code, Cursor, VS Code, Zed, Continue et tous les clients compatibles MCP d'accéder aux réunions, transcriptions et synthèses Gilbert d'un utilisateur — en lecture seule.
Toutes les configs partagent la même commande : npx -y gilbert-mcp avec la
variable GILBERT_API_KEY.
Éditez le fichier de configuration :
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"gilbert": {
"command": "npx",
"args": ["-y", "gilbert-mcp"],
"env": {
"GILBERT_API_KEY": "glbrt_live_XXXXXXXXXXXXXXXXXXXXXXXX"
}
}
}
}
Redémarrez Claude Desktop. Vous pouvez maintenant demander :
« Liste mes réunions terminées cette semaine » « Résume-moi la réunion du 12 avril » « Trouve-moi la réunion où on a parlé de budget Q3 »
claude mcp add gilbert --env GILBERT_API_KEY=glbrt_live_XXX -- npx -y gilbert-mcp
Settings > Features > Model Context Protocol > Add MCP Server :
{
"name": "gilbert",
"command": "npx",
"args": ["-y", "gilbert-mcp"],
"env": { "GILBERT_API_KEY": "glbrt_live_XXXXXXXXXXXXXXXXXXXXXXXX" }
}
.vscode/mcp.json (ou la commande MCP: Add Server) :
{
"servers": {
"gilbert": {
"command": "npx",
"args": ["-y", "gilbert-mcp"],
"env": { "GILBERT_API_KEY": "glbrt_live_XXXXXXXXXXXXXXXXXXXXXXXX" }
}
}
}
Dans settings.json, sous context_servers :
{
"context_servers": {
"gilbert": {
"command": { "path": "npx", "args": ["-y", "gilbert-mcp"], "env": { "GILBERT_API_KEY": "glbrt_live_XXX" } }
}
}
}
docker build -t gilbert-mcp .
docker run --rm -i -e GILBERT_API_KEY=glbrt_live_XXX gilbert-mcp
Contactez votre administrateur Gilbert pour qu'il génère une clé depuis la
console admin. Scope minimum requis : meetings:read (lecture seule).
Tous les tools sont en lecture seule (readOnlyHint).
| Tool | Description |
|---|---|
list_meetings | Liste paginée, filtres par statut/date |
get_meeting | Détail complet d'une réunion (metadata + transcription + synthèse) |
get_transcript | Transcription texte seule |
get_summary | Synthèse markdown seule |
search_meetings | Recherche full-text |
list_folders | Liste les dossiers (nom + nombre de réunions) |
get_folder_meetings | Réunions d'un dossier (et sous-dossiers) |
Le contenu partagé avec l'utilisateur (réunions/dossiers d'autres personnes) n'est accessible que si la clé API porte le scope
shared:read. Par défaut, une clé ne voit que le contenu de son propriétaire.
GILBERT_API_KEY (requis) : clé au format glbrt_live_...GILBERT_BASE_URL (optionnel) : défaut https://gilbert-assistant.ovh/api/v1Ce serveur expose des transcriptions et synthèses de réunions (données potentiellement sensibles). Il s'exécute localement en stdio, n'ouvre aucun port entrant, ne journalise jamais la clé API et n'écrit aucune donnée de réunion sur disque. Voir SECURITY.md.
git clone https://github.com/HugoF1234/Gilbert-mcp
cd Gilbert-mcp
npm install
GILBERT_API_KEY=glbrt_live_... npm run dev # stdio
npm test # build + smoke test (handshake MC
... [View full README on GitHub](https://github.com/HugoF1234/Gilbert-mcp#readme)