We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/metcalfc/atrax'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-echo-server.sh•546 B
#!/bin/bash
# Smoke test script for the Echo Server
# Source the shared utilities
source "$(dirname "$0")/utils.sh"
# Define the echo server path using the project root
ECHO_SERVER="node $PROJECT_ROOT/examples/servers/scripts/echo-server.js"
echo -e "${BLUE}===== Smoke Testing Echo Server =====\n${NC}"
echo -e "${YELLOW}Testing echo server via stdio transport${NC}\n"
# Use the shared function to test the Echo server tools
test_echo_server_tools "run_stdio_test" "$ECHO_SERVER" "" ""
echo -e "${GREEN}===== Tests Completed =====\n${NC}"