UNPKG

smart-thinking-mcp

Version:

Un serveur MCP avancé pour le raisonnement multi-dimensionnel, adaptatif et collaboratif

36 lines 1.61 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SERVER_RUNTIME_RESOURCE_URI = exports.SERVER_DOCS_RESOURCE_URI = exports.SMART_THINKING_CAPABILITIES = exports.SMART_THINKING_INSTRUCTIONS = void 0; exports.buildServerImplementation = buildServerImplementation; const PROJECT_HOMEPAGE = 'https://github.com/Leghis/Smart-Thinking'; const PROJECT_ICON = 'https://raw.githubusercontent.com/Leghis/Smart-Thinking/main/logoSmart-thinking.png'; exports.SMART_THINKING_INSTRUCTIONS = [ 'Smart-Thinking fournit un raisonnement graphe local, deterministe et sans cle API par defaut.', 'Utilisez smartthinking pour enrichir une session de raisonnement, search pour retrouver des memoires et fetch pour lire une memoire complete.', 'En mode connector, exposez search/fetch uniquement pour les clients MCP distants.' ].join(' '); exports.SMART_THINKING_CAPABILITIES = { logging: {}, tools: { listChanged: true }, prompts: { listChanged: true }, resources: { listChanged: true, subscribe: false }, completions: {} }; function buildServerImplementation(version) { return { name: 'smart-thinking-mcp', title: 'Smart-Thinking', version, websiteUrl: PROJECT_HOMEPAGE, icons: [ { src: PROJECT_ICON, mimeType: 'image/png', sizes: ['512x512'] } ] }; } exports.SERVER_DOCS_RESOURCE_URI = 'smart-thinking://docs/about'; exports.SERVER_RUNTIME_RESOURCE_URI = 'smart-thinking://runtime/status'; //# sourceMappingURL=server-metadata.js.map