Skip to main content
Glama

BMAD MCP Server

by Dali1789
index.jsโ€ข1.32 kB
import process from 'node:process'; import path from 'node:path'; import {fileURLToPath} from 'node:url'; import pathKey from 'path-key'; export const npmRunPath = ({ cwd = process.cwd(), path: pathOption = process.env[pathKey()], preferLocal = true, execPath = process.execPath, addExecPath = true, } = {}) => { const cwdString = cwd instanceof URL ? fileURLToPath(cwd) : cwd; const cwdPath = path.resolve(cwdString); const result = []; if (preferLocal) { applyPreferLocal(result, cwdPath); } if (addExecPath) { applyExecPath(result, execPath, cwdPath); } return [...result, pathOption].join(path.delimiter); }; const applyPreferLocal = (result, cwdPath) => { let previous; while (previous !== cwdPath) { result.push(path.join(cwdPath, 'node_modules/.bin')); previous = cwdPath; cwdPath = path.resolve(cwdPath, '..'); } }; // Ensure the running `node` binary is used const applyExecPath = (result, execPath, cwdPath) => { const execPathString = execPath instanceof URL ? fileURLToPath(execPath) : execPath; result.push(path.resolve(cwdPath, execPathString, '..')); }; export const npmRunPathEnv = ({env = process.env, ...options} = {}) => { env = {...env}; const pathName = pathKey({env}); options.path = env[pathName]; env[pathName] = npmRunPath(options); return env; };

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/Dali1789/bmad-mcp-server'

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