Skip to main content
ClaudeWave

Serveur MCP (Cloudflare Workers) exposant le catalogue de notices noticiel.com aux agents IA

MCP ServersOfficial Registry0 stars0 forksTypeScriptUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · wrangler
Claude Code CLI
claude mcp add mcp-noticiel -- npx -y wrangler
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-noticiel": {
      "command": "npx",
      "args": ["-y", "wrangler"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# Serveur MCP Noticiel — Cloudflare Workers

Expose le catalogue de notices **Noticiel** aux agents IA (Claude & co.) via le **Model Context Protocol**, en lecture seule, depuis l'API WP REST publique de noticiel.com. **Aucun secret/identifiant requis.**

## Outils exposés
| Outil | Rôle |
|---|---|
| `search_notices(query, marque?, categorie?, limit?)` | Recherche de notices |
| `get_notice(url_ou_slug)` | Contenu complet + lien PDF |
| `find_pdf(marque, modele)` | Lien PDF direct |
| `list_marques(search?, limit?)` | Marques + nb de notices |
| `list_categories(limit?)` | Catégories de produits |

Chaque réponse porte `source: "Noticiel"` et l'URL Noticiel → l'agent **cite la marque**.

## Prérequis
- Node.js 18+ et un compte **Cloudflare** (gratuit).

## Installation & test local
```bash
cd mcp-noticiel
npm install
npm run dev            # serveur local sur http://localhost:8787
```
Test rapide du endpoint :
```bash
curl http://localhost:8787/            # message d'accueil
```
Test avec l'inspecteur MCP officiel :
```bash
npx @modelcontextprotocol/inspector
# Transport: SSE  →  URL: http://localhost:8787/sse
```

## Déploiement (production)
```bash
npx wrangler login      # ouvre le navigateur, autorise Cloudflare
npm run deploy          # déploie -> https://noticiel-mcp.<ton-sous-domaine>.workers.dev
```
URL publique : `https://noticiel-mcp.<compte>.workers.dev/sse`

### Domaine personnalisé `mcp.noticiel.com` (optionnel)
1. Ajoute `noticiel.com` à Cloudflare (DNS), si ce n'est pas déjà le cas.
2. Décommente le bloc `routes` dans `wrangler.jsonc`.
3. `npm run deploy`.
→ endpoint : `https://mcp.noticiel.com/sse`

## Connecter un client

### Claude Desktop / Claude.ai (connecteurs)
Ajoute un connecteur MCP distant avec l'URL `…/sse`. Pour les clients qui ne gèrent
que le stdio, utiliser le pont `mcp-remote` :
```json
{
  "mcpServers": {
    "noticiel": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.noticiel.com/sse"]
    }
  }
}
```

### Vérifier que ça marche
Demander à l'agent : *« Avec l'outil Noticiel, trouve la notice du lave-vaisselle Bosch Silence Plus. »*
→ il doit appeler `search_notices` puis `get_notice` et répondre en citant **Noticiel** + l'URL + le PDF.

## Notes techniques
- Transport : `/sse` (SSE) et `/mcp` (Streamable HTTP). `McpAgent` (paquet `agents`) utilise un Durable Object (`MCP_OBJECT`).
- Cache edge 1 h sur les appels WP (`cf.cacheTtl`) → protège le WordPress et réduit la latence.
- Read-only : seuls les GET de `/wp/v2/posts|marque|categorie_produit` sont appelés. Les endpoints d'ingestion `noticiel/v1` ne sont jamais touchés.
- Évolutions possibles : rate-limit (Workers Rate Limiting), ressources MCP (llms.txt, sitemaps), specs structurées dans `get_notice`.
cloudflare-workersfrenchmcpmodel-context-protocolnotices

What people ask about mcp-noticiel

What is waddou/mcp-noticiel?

+

waddou/mcp-noticiel is mcp servers for the Claude AI ecosystem. Serveur MCP (Cloudflare Workers) exposant le catalogue de notices noticiel.com aux agents IA It has 0 GitHub stars and was last updated today.

How do I install mcp-noticiel?

+

You can install mcp-noticiel by cloning the repository (https://github.com/waddou/mcp-noticiel) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is waddou/mcp-noticiel safe to use?

+

waddou/mcp-noticiel has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains waddou/mcp-noticiel?

+

waddou/mcp-noticiel is maintained by waddou. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to mcp-noticiel?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-noticiel to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: waddou/mcp-noticiel
[![Featured on ClaudeWave](https://claudewave.com/api/badge/waddou-mcp-noticiel)](https://claudewave.com/repo/waddou-mcp-noticiel)
<a href="https://claudewave.com/repo/waddou-mcp-noticiel"><img src="https://claudewave.com/api/badge/waddou-mcp-noticiel" alt="Featured on ClaudeWave: waddou/mcp-noticiel" width="320" height="64" /></a>

More MCP Servers

mcp-noticiel alternatives