We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thlandgraf/askme-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run-stdio-server.sh•362 B
#!/bin/bash
# Run the Ask-Me MCP stdio server
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
SERVER_PATH="$SCRIPT_DIR/dist/askme-server/main.js"
# Check if server is built
if [ ! -f "$SERVER_PATH" ]; then
echo "Error: Server not built. Run: npx nx build askme-server" >&2
exit 1
fi
# Run the server with all passed arguments
exec node "$SERVER_PATH" "$@"