@abertnguyen/abert-test-mcp
v1.0.7
Published
NPX installer for Travala MCP
Downloads
357
Maintainers
Readme
@abertnguyen/abert-test-mcp
Travel MCP is an MCP server & companion wallet app that enables hotel booking and supports seamless payments via x402.
It allows AI agents to autonomously search for hotels, make bookings, and complete payments without API keys, complex seed phrases, or manual intervention.
Prerequisites
Node.js
This tool requires Node.js v18 or higher. If you haven't installed Node.js yet, please install it first.
Quick Start
1) Install abert-test-mcp:
npx @abertnguyen/abert-test-mcp2) Select your MCP client:
During installation, you'll be prompted to choose which MCP client you're configuring:
- Claude - Claude Desktop application
- Claude Code - Claude Code CLI
- Codex - OpenAI Codex CLI
- Gemini - Google Gemini CLI
- Other - Other MCP-compatible tools
3) Automatic Configuration (Optional):
The installer supports automatic configuration for compatible MCP clients.
You'll be prompted during installation, or you can:
# Automatically configure without prompting
npx @abertnguyen/abert-test-mcp --client claude --auto-config
# Skip automatic configuration
npx @abertnguyen/abert-test-mcp --client claude --no-auto-config4) Manual Configuration (If Needed):
If you skip automatic configuration, detailed setup instructions will be displayed.
Example Configuration:
{
"mcpServers": {
"abert-test-mcp": {
"command": "node",
"args": ["/Users/your-home-dir/.abert-test-mcp/bundle.js"]
}
}
}Usage
Commands
# Default installation (same as 'install')
npx @abertnguyen/abert-test-mcp
# Explicit install command
npx @abertnguyen/abert-test-mcp install
# Force reinstallation (even if up to date)
npx @abertnguyen/abert-test-mcp install --force
# Check installation status
npx @abertnguyen/abert-test-mcp status
# Uninstall abert-test-mcp
npx @abertnguyen/abert-test-mcp uninstall
# Enable verbose logging for any command
npx @abertnguyen/abert-test-mcp install --verboseOptions
--client, -c <client>: Specify MCP client to configure (claude, claude-code, codex, gemini, other)--auto-config: Automatically configure the MCP client without prompting (for supported clients)--no-auto-config: Skip automatic configuration prompt--verbose, -v: Enable detailed logging output--force, -f: Force reinstallation even if already up to date--help, -h: Show help information
Supported MCP Clients
| Client | Value | Description | Auto-Config |
|------|-------|-------------|-------------|
| Claude Desktop | claude | Claude Desktop application | ✅ |
| Claude Code | claude-code | Claude Code CLI tool | ✅ |
| Codex CLI | codex | OpenAI Codex CLI tool | ✅ |
| Gemini CLI | gemini | Google Gemini CLI tool | ✅ |
| Other | other | Other stdio-compatible MCP clients | Manual only |
File Locations
- Installation Directory:
~/.abert-test-mcp/ - Logs: Displayed in terminal (use
--verbosefor detailed logs)
Troubleshooting
Common Issues
"Command not found" Error
- Ensure npm is in your system PATH
- Try running
npm --versionto verify npm installation
"Permission denied" Error
- On macOS/Linux: Check file permissions in the installation directory
- On Windows: Try running as administrator
"Module not found" Error
- Re-run the installer to download the latest version
- Use
--forceflag to force reinstallation
Network Issues
- Check your firewall and proxy settings
Debug Mode
For detailed troubleshooting information, run with verbose logging:
npx @abertnguyen/abert-test-mcp install --verboseGetting Help
Check the status of your installation:
npx @abertnguyen/abert-test-mcp statusView detailed logs with
--verboseflagFor additional support, visit: GitHub Issues
Security
The travala team takes security seriously. Please do not file a public ticket discussing a potential vulnerability. Please report your findings through our HackerOne program.
For more information, see our Security Policy.
License
Licensed under the Apache License, Version 2.0. See the LICENSE file for details.
Installing Node.js
This tool requires Node.js v18 or higher. Follow the instructions for your operating system:
macOS
# Using Homebrew (recommended)
brew install node
# Or download the installer from https://nodejs.orgWindows
Download the installer from nodejs.org and run the .msi file.
Or using winget:
winget install OpenJS.NodeJSOr using Chocolatey:
choco install nodejsLinux (Ubuntu / Debian)
# Using NodeSource (recommended)
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejsLinux (Fedora / RHEL / CentOS)
curl -fsSL https://rpm.nodesource.com/setup_lts.x | sudo bash -
sudo dnf install -y nodejsUsing nvm (all platforms)
nvm is a version manager that works on macOS and Linux. For Windows, use nvm-windows.
# Install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# Install and use the latest LTS version
nvm install --lts
nvm use --ltsVerify installation
node --version # should print v18.x.x or higher
npm --versionNote: This installer is designed for the abert-test-mcp project and supports multiple MCP clients. For other MCP servers, please refer to their respective installation instructions.
