Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ This project provides an **MCP (Model Context Protocol)** server that exposes Ex

```bash
export EXPEDIA_API_KEY="your_api_key_here"
uvx expedia_travel_recommendations --protocol "stdio"
uvx expedia_travel_recommendations_mcp --protocol "stdio"
```

### Run with `streamable-http` protocol (Web Clients)

```bash
export EXPEDIA_API_KEY="your_api_key_here"
uvx expedia_travel_recommendations --protocol "streamable-http"
uvx expedia_travel_recommendations_mcp --protocol "streamable-http"
```

> Access it at: `http://0.0.0.0:9900/mcp`
Expand Down Expand Up @@ -76,7 +76,7 @@ docker run \
"expedia-travel-recommendations": {
"command": "uvx",
"args": [
"expedia_travel_recommendations",
"expedia_travel_recommendations_mcp",
"--protocol",
"stdio"
],
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "expedia-travel-recommendations-mcp"
version = "0.1.6"
version = "0.1.7"
description = "Travel recommendations MCP Server"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down