Serveur MCP Fetch
Le serveur MCP Fetch permet a Chatbotaurus de recuperer et traiter du contenu depuis le web.
Installation
uvx mcp-server-fetch
info
uv est requis pour executer cette commande via uvx.
Configuration dans Chatbotaurus
{
name: 'fetch',
type: 'stdio',
command: 'uvx',
args: ['mcp-server-fetch'],
timeout: 300
}
Outils disponibles
| Outil | Description |
|---|---|
fetch | Recuperer le contenu d'une URL |
Exemple d'utilisation
curl -X POST http://localhost:3000/api/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "fetch",
"arguments": { "url": "https://example.com" }
},
"id": 1
}'