Skip to main content
Glama

BMAD MCP Server

by Dali1789
index.jsโ€ข746 B
export function isStream(stream) { return stream !== null && typeof stream === 'object' && typeof stream.pipe === 'function'; } export function isWritableStream(stream) { return isStream(stream) && stream.writable !== false && typeof stream._write === 'function' && typeof stream._writableState === 'object'; } export function isReadableStream(stream) { return isStream(stream) && stream.readable !== false && typeof stream._read === 'function' && typeof stream._readableState === 'object'; } export function isDuplexStream(stream) { return isWritableStream(stream) && isReadableStream(stream); } export function isTransformStream(stream) { return isDuplexStream(stream) && typeof stream._transform === 'function'; }

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