CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
hugof1234 avatar

Gilbert Mcp

hugof1234/gilbert-mcp
1authSTDIOregistry active
Summary

Connects Claude and other MCP clients to Gilbert's meeting platform. Exposes five tools: list_meetings for browsing with filters, get_meeting for full details, get_transcript and get_summary for grabbing just the text or markdown output, and search_meetings for full-text queries. Requires a GILBERT_API_KEY from your admin with meetings:read scope. Useful if your team records meetings in Gilbert and you want to pull transcripts, search past discussions, or generate summaries without leaving your editor. Install via npx, no local setup needed. Works with Claude Desktop, Cursor, Continue, and Zed.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

gilbert-mcp

CI npm License: MIT

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.

Installation rapide

Toutes les configs partagent la même commande : npx -y gilbert-mcp avec la variable GILBERT_API_KEY.

Claude Desktop

Éditez le fichier de configuration :

  • macOS : ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows : %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 Code

claude mcp add gilbert --env GILBERT_API_KEY=glbrt_live_XXX -- npx -y gilbert-mcp

Cursor

Settings > Features > Model Context Protocol > Add MCP Server :

{
  "name": "gilbert",
  "command": "npx",
  "args": ["-y", "gilbert-mcp"],
  "env": { "GILBERT_API_KEY": "glbrt_live_XXXXXXXXXXXXXXXXXXXXXXXX" }
}

VS Code

.vscode/mcp.json (ou la commande MCP: Add Server) :

{
  "servers": {
    "gilbert": {
      "command": "npx",
      "args": ["-y", "gilbert-mcp"],
      "env": { "GILBERT_API_KEY": "glbrt_live_XXXXXXXXXXXXXXXXXXXXXXXX" }
    }
  }
}

Zed

Dans settings.json, sous context_servers :

{
  "context_servers": {
    "gilbert": {
      "command": { "path": "npx", "args": ["-y", "gilbert-mcp"], "env": { "GILBERT_API_KEY": "glbrt_live_XXX" } }
    }
  }
}

Docker (alternative)

docker build -t gilbert-mcp .
docker run --rm -i -e GILBERT_API_KEY=glbrt_live_XXX gilbert-mcp

Obtenir une clé API

Contactez votre administrateur Gilbert pour qu'il génère une clé depuis la console admin. Scope minimum requis : meetings:read (lecture seule).

Tools exposés

Tous les tools sont en lecture seule (readOnlyHint).

ToolDescription
list_meetingsListe paginée, filtres par statut/date
get_meetingDétail complet d'une réunion (metadata + transcription + synthèse)
get_transcriptTranscription texte seule
get_summarySynthèse markdown seule
search_meetingsRecherche full-text
list_foldersListe les dossiers (nom + nombre de réunions)
get_folder_meetingsRé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.

Variables d'environnement

  • GILBERT_API_KEY (requis) : clé au format glbrt_live_...
  • GILBERT_BASE_URL (optionnel) : défaut https://gilbert-assistant.ovh/api/v1

Confidentialité & sécurité

Ce 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.

Développement

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 MCP)

Voir CONTRIBUTING.md pour le process de release et docs/SUBMISSION.md pour le référencement dans les catalogues.

Licence

MIT — © 2026 Lexia.

Support

  • Documentation API : https://gilbert-assistant.ovh/api/v1/docs
  • Contact : contact@lexiapro.fr
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

Configuration

GILBERT_API_KEY*secret

Your Gilbert API key (format: glbrt_live_...). Get one from your Gilbert admin dashboard with at least the meetings:read scope.

GILBERT_BASE_URLdefault: https://gilbert-assistant.ovh/api/v1

Gilbert API base URL. Defaults to the official hosted API; override only for self-hosted deployments.

Categories
Search & Web Crawling
Registryactive
Packagegilbert-mcp
TransportSTDIO
AuthRequired
UpdatedApr 18, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
jgador avatar
Websharp

jgador/websharp

Search the web and extract article text for LLMs.
1
securecoders avatar
OpenGraph.io MCP Server

securecoders/opengraph-io-mcp

MCP server for OpenGraph.io API - fetch OG data, screenshots, scrape, and generate images
1
shawnnygoh avatar
ArXiv Scout

shawnnygoh/arxiv-scout

Search and retrieve academic papers directly from arXiv with advanced query capabilities. Extract full text from PDFs to generate summaries, literature reviews, and side-by-side comparisons. Track citations and references to discover related research and map out academic trends.
1
yubinkim444 avatar
AI-First Scraper

yubinkim444/ai-first-scraper-mcp

Three MCP tools: fetch_page, fetch_pages_batch, search_web. Ad-free Markdown for AI agents.
1
ai.reka avatar
Reka

ai.reka/mcp

Understand your videos with Reka AI — search, ask questions, and extract insights.
blacklotusdev8 avatar
Blacklotusdev8 Test M

ai.smithery/blacklotusdev8-test_m

Greet anyone by name with a friendly hello. Scrape webpages to extract content for quick reference…