We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/proofmath-owner/ai-filesystem-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build-shell-command.shโข620 B
#!/bin/bash
echo "๐จ Building AI FileSystem MCP..."
cd "$(dirname "$0")/.." || exit 1
# Clean build directory
echo "๐งน Cleaning build directory..."
rm -rf dist
# Build TypeScript
echo "๐ฆ Building TypeScript..."
npm run build
if [ $? -eq 0 ]; then
echo "โ Build successful!"
# Check if shell command was built
if [ -f "dist/commands/implementations/security/ExecuteShellCommand.js" ]; then
echo "โ Shell execution command built successfully!"
else
echo "โ ๏ธ Shell execution command not found in build output"
fi
else
echo "โ Build failed!"
exit 1
fi