We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/soenkenils/mailbox-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
quick-test.shโข316 B
#!/bin/bash
# Quick tests after code changes
set -e
cd "$CLAUDE_PROJECT_DIR"
echo "๐งช Running quick tests..."
# Only unit tests, no integration tests
if bun run test --reporter=verbose --exclude="**/integration.test.ts"; then
echo "โ Quick tests passed"
else
echo "โ Some tests failed"
exit 1
fi