trvl-mcp 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +20 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# trvl-mcp
|
|
2
2
|
|
|
3
|
-
AI travel agent MCP server.
|
|
3
|
+
AI travel agent MCP server. **1 smart tool, not 64** — advertises a single `travel` router (~378 tokens of context) instead of 64 separate tools (~33,500 tokens), a **98.9% smaller context footprint**. Covers flights, hotels, ground transport, price alerts, and more, dispatched by natural language. No API keys required.
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
@@ -25,6 +25,7 @@ Add to `claude_desktop_config.json`:
|
|
|
25
25
|
|
|
26
26
|
## What's included
|
|
27
27
|
|
|
28
|
+
- **1 smart `travel` MCP tool** — natural-language router; advertises one tool (~378 tokens) instead of 64 (~33,500), so your AI's context window stays lean. 64 legacy tool names remain callable as compatibility aliases via the `intent` field (set `TRVL_MCP_TOOL_MODE=legacy` to advertise all 64 for clients that require it).
|
|
28
29
|
- Flight search (Google Flights, Kiwi)
|
|
29
30
|
- Hotel search (Google Hotels, Booking.com, Airbnb, Hostelworld, Trivago)
|
|
30
31
|
- Ground transport (buses, trains, ferries — 20 providers)
|
package/package.json
CHANGED
|
@@ -1,22 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trvl-mcp",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "AI travel agent — 1 smart MCP tool plus
|
|
3
|
+
"version": "1.6.0",
|
|
4
|
+
"description": "AI travel agent — 1 smart MCP tool plus 64 compatibility aliases for flights, hotels, ground transport, price alerts. No API keys required.",
|
|
5
5
|
"license": "PolyForm-Noncommercial-1.0.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/MikkoParkkola/trvl"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://github.com/MikkoParkkola/trvl",
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"mcp",
|
|
13
|
+
"travel",
|
|
14
|
+
"flights",
|
|
15
|
+
"hotels",
|
|
16
|
+
"ai",
|
|
17
|
+
"claude",
|
|
18
|
+
"model-context-protocol"
|
|
19
|
+
],
|
|
12
20
|
"bin": {
|
|
13
21
|
"trvl-mcp": "bin/trvl-mcp.js"
|
|
14
22
|
},
|
|
15
23
|
"scripts": {
|
|
16
24
|
"postinstall": "node bin/install.js"
|
|
17
25
|
},
|
|
18
|
-
"os": [
|
|
19
|
-
|
|
26
|
+
"os": [
|
|
27
|
+
"darwin",
|
|
28
|
+
"linux",
|
|
29
|
+
"win32"
|
|
30
|
+
],
|
|
31
|
+
"cpu": [
|
|
32
|
+
"x64",
|
|
33
|
+
"arm64"
|
|
34
|
+
],
|
|
20
35
|
"engines": {
|
|
21
36
|
"node": ">=16"
|
|
22
37
|
}
|