What is the ai.autonomad/travel MCP server?
AI travel agent — book flights, hotels, activities, and events worldwide via autonomad.ai.
How to install ai.autonomad/travel
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
AUTONOMAD_API_URLAutonomad API base URL. Defaults to production.
AUTONOMAD_AGENT_MODESet to 'true' to expose autonomous-agent tools (register_agent, DID-based booking). Default human mode is for Claude/ChatGPT users.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"travel": {
"command": "npx",
"args": [
"-y",
"autonomad-travel"
],
"env": {
"AUTONOMAD_API_URL": "<YOUR_AUTONOMAD_API_URL>",
"AUTONOMAD_AGENT_MODE": "<YOUR_AUTONOMAD_AGENT_MODE>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"travel": {
"command": "npx",
"args": [
"-y",
"autonomad-travel"
],
"env": {
"AUTONOMAD_API_URL": "<YOUR_AUTONOMAD_API_URL>",
"AUTONOMAD_AGENT_MODE": "<YOUR_AUTONOMAD_AGENT_MODE>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"travel": {
"command": "npx",
"args": [
"-y",
"autonomad-travel"
],
"env": {
"AUTONOMAD_API_URL": "<YOUR_AUTONOMAD_API_URL>",
"AUTONOMAD_AGENT_MODE": "<YOUR_AUTONOMAD_AGENT_MODE>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"travel": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"autonomad-travel"
],
"env": {
"AUTONOMAD_API_URL": "<YOUR_AUTONOMAD_API_URL>",
"AUTONOMAD_AGENT_MODE": "<YOUR_AUTONOMAD_AGENT_MODE>"
}
}
}
}Claude Code
claude mcp add travel --env AUTONOMAD_API_URL=<YOUR_AUTONOMAD_API_URL> --env AUTONOMAD_AGENT_MODE=<YOUR_AUTONOMAD_AGENT_MODE> -- npx -y autonomad-travelRelated MCP servers
ai.autonomad/computeback
Maintained
Agent Rewards Marketplace: earn $NOMD on B2B work, spend on agent capabilities.
0
View repository →TypeScript
MIT