Skip to main content
Glama

Shared Knowledge MCP Server

by j5ik2o
node_fs.js690 B
// node:fsのモック const fs = { existsSync: (path) => { // テスト用のパスが存在するかどうかをシミュレート if (path.includes('test-knowledge-base') || path.includes('docs')) { return true; } if (path.includes('.vector-store')) { // 最初は存在しないが、初期化後は存在する return global.__VECTOR_STORE_EXISTS__ || false; } return false; }, rmSync: (path, options) => { // ファイル削除をシミュレート if (path.includes('.vector-store')) { global.__VECTOR_STORE_EXISTS__ = false; } return true; }, // その他必要なメソッド }; module.exports = fs;

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/j5ik2o/shared-knowledge-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server