wander-agent 0.1.0__tar.gz

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.
Files changed (78) hide show
  1. wander_agent-0.1.0/.env.example +3 -0
  2. wander_agent-0.1.0/.github/workflows/ci.yml +29 -0
  3. wander_agent-0.1.0/.github/workflows/publish.yml +35 -0
  4. wander_agent-0.1.0/.gitignore +11 -0
  5. wander_agent-0.1.0/Dockerfile +17 -0
  6. wander_agent-0.1.0/LICENSE +21 -0
  7. wander_agent-0.1.0/PKG-INFO +710 -0
  8. wander_agent-0.1.0/README.md +683 -0
  9. wander_agent-0.1.0/pyproject.toml +49 -0
  10. wander_agent-0.1.0/railway.toml +10 -0
  11. wander_agent-0.1.0/server.json +21 -0
  12. wander_agent-0.1.0/src/wander_agent/__init__.py +3 -0
  13. wander_agent-0.1.0/src/wander_agent/server.py +1563 -0
  14. wander_agent-0.1.0/src/wander_agent/tools/__init__.py +1 -0
  15. wander_agent-0.1.0/src/wander_agent/tools/activities.py +183 -0
  16. wander_agent-0.1.0/src/wander_agent/tools/advisory.py +193 -0
  17. wander_agent-0.1.0/src/wander_agent/tools/aurora.py +166 -0
  18. wander_agent-0.1.0/src/wander_agent/tools/budget.py +159 -0
  19. wander_agent-0.1.0/src/wander_agent/tools/cheapest_month.py +203 -0
  20. wander_agent-0.1.0/src/wander_agent/tools/cost_of_living.py +95 -0
  21. wander_agent-0.1.0/src/wander_agent/tools/currency.py +76 -0
  22. wander_agent-0.1.0/src/wander_agent/tools/destination.py +124 -0
  23. wander_agent-0.1.0/src/wander_agent/tools/events.py +228 -0
  24. wander_agent-0.1.0/src/wander_agent/tools/fare_calendar.py +221 -0
  25. wander_agent-0.1.0/src/wander_agent/tools/fare_watch.py +166 -0
  26. wander_agent-0.1.0/src/wander_agent/tools/flight_carbon.py +194 -0
  27. wander_agent-0.1.0/src/wander_agent/tools/flights.py +394 -0
  28. wander_agent-0.1.0/src/wander_agent/tools/ground_transport.py +224 -0
  29. wander_agent-0.1.0/src/wander_agent/tools/health.py +269 -0
  30. wander_agent-0.1.0/src/wander_agent/tools/hotels.py +211 -0
  31. wander_agent-0.1.0/src/wander_agent/tools/inspiration.py +349 -0
  32. wander_agent-0.1.0/src/wander_agent/tools/itinerary.py +182 -0
  33. wander_agent-0.1.0/src/wander_agent/tools/jetlag.py +189 -0
  34. wander_agent-0.1.0/src/wander_agent/tools/local_sim.py +1022 -0
  35. wander_agent-0.1.0/src/wander_agent/tools/meetup.py +187 -0
  36. wander_agent-0.1.0/src/wander_agent/tools/mistake_fares.py +143 -0
  37. wander_agent-0.1.0/src/wander_agent/tools/nomad_score.py +323 -0
  38. wander_agent-0.1.0/src/wander_agent/tools/open_jaw.py +279 -0
  39. wander_agent-0.1.0/src/wander_agent/tools/package.py +598 -0
  40. wander_agent-0.1.0/src/wander_agent/tools/packing.py +277 -0
  41. wander_agent-0.1.0/src/wander_agent/tools/passport_power.py +233 -0
  42. wander_agent-0.1.0/src/wander_agent/tools/phrasebook.py +375 -0
  43. wander_agent-0.1.0/src/wander_agent/tools/places.py +179 -0
  44. wander_agent-0.1.0/src/wander_agent/tools/profile.py +339 -0
  45. wander_agent-0.1.0/src/wander_agent/tools/restaurants.py +298 -0
  46. wander_agent-0.1.0/src/wander_agent/tools/score.py +222 -0
  47. wander_agent-0.1.0/src/wander_agent/tools/seasons.py +104 -0
  48. wander_agent-0.1.0/src/wander_agent/tools/skiplagged.py +186 -0
  49. wander_agent-0.1.0/src/wander_agent/tools/split_ticket.py +276 -0
  50. wander_agent-0.1.0/src/wander_agent/tools/stopover.py +273 -0
  51. wander_agent-0.1.0/src/wander_agent/tools/transit_visa.py +289 -0
  52. wander_agent-0.1.0/src/wander_agent/tools/travel_news.py +149 -0
  53. wander_agent-0.1.0/src/wander_agent/tools/trips.py +113 -0
  54. wander_agent-0.1.0/src/wander_agent/tools/value_rank.py +145 -0
  55. wander_agent-0.1.0/src/wander_agent/tools/verify.py +204 -0
  56. wander_agent-0.1.0/src/wander_agent/tools/visa.py +463 -0
  57. wander_agent-0.1.0/src/wander_agent/tools/weather.py +212 -0
  58. wander_agent-0.1.0/src/wander_agent/utils/__init__.py +1 -0
  59. wander_agent-0.1.0/src/wander_agent/utils/airport_data.py +302 -0
  60. wander_agent-0.1.0/src/wander_agent/utils/config.py +11 -0
  61. wander_agent-0.1.0/src/wander_agent/utils/cost_data.py +313 -0
  62. wander_agent-0.1.0/src/wander_agent/utils/freshness.py +93 -0
  63. wander_agent-0.1.0/src/wander_agent/utils/http.py +26 -0
  64. wander_agent-0.1.0/src/wander_agent/utils/kiwi_client.py +107 -0
  65. wander_agent-0.1.0/src/wander_agent/utils/profile_store.py +107 -0
  66. wander_agent-0.1.0/src/wander_agent/utils/trip_store.py +168 -0
  67. wander_agent-0.1.0/src/wander_agent/utils/watch_store.py +130 -0
  68. wander_agent-0.1.0/tests/__init__.py +0 -0
  69. wander_agent-0.1.0/tests/conftest.py +34 -0
  70. wander_agent-0.1.0/tests/test_adds.py +125 -0
  71. wander_agent-0.1.0/tests/test_airport_data.py +61 -0
  72. wander_agent-0.1.0/tests/test_flights.py +70 -0
  73. wander_agent-0.1.0/tests/test_ground_transport.py +106 -0
  74. wander_agent-0.1.0/tests/test_integration.py +200 -0
  75. wander_agent-0.1.0/tests/test_profile.py +109 -0
  76. wander_agent-0.1.0/tests/test_server.py +89 -0
  77. wander_agent-0.1.0/tests/test_visa.py +88 -0
  78. wander_agent-0.1.0/uv.lock +1227 -0
@@ -0,0 +1,3 @@
1
+ # wander-agent — no API keys required.
2
+ # All tools work without any configuration.
3
+ # Copy this file to .env if you need to override defaults.
@@ -0,0 +1,29 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ python-version: ["3.10", "3.11", "3.12"]
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-python@v5
19
+ with:
20
+ python-version: ${{ matrix.python-version }}
21
+ - name: Install
22
+ run: pip install -e ".[dev]"
23
+ - name: Test
24
+ run: pytest -q
25
+ - name: Verify tool count
26
+ run: |
27
+ count=$(grep -c "@mcp.tool()" src/wander_agent/server.py)
28
+ echo "registered tools: $count"
29
+ test "$count" -eq 60
@@ -0,0 +1,35 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-python@v5
13
+ with:
14
+ python-version: "3.12"
15
+ - name: Build
16
+ run: |
17
+ pip install build
18
+ python -m build
19
+ - uses: actions/upload-artifact@v4
20
+ with:
21
+ name: dist
22
+ path: dist/
23
+
24
+ publish:
25
+ needs: build
26
+ runs-on: ubuntu-latest
27
+ environment: pypi
28
+ permissions:
29
+ id-token: write # PyPI trusted publishing (OIDC) — no API token stored
30
+ steps:
31
+ - uses: actions/download-artifact@v4
32
+ with:
33
+ name: dist
34
+ path: dist/
35
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,11 @@
1
+ .env
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ dist/
6
+ build/
7
+ *.egg-info/
8
+ .venv/
9
+ node_modules/
10
+ package-lock.json
11
+ .DS_Store
@@ -0,0 +1,17 @@
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Copy everything the build needs (hatchling reads pyproject + README)
6
+ COPY pyproject.toml README.md ./
7
+ COPY src/ ./src/
8
+
9
+ RUN pip install --no-cache-dir .
10
+
11
+ # stdio by default (MCP introspection / local clients).
12
+ # Hosted deployments (Railway etc.) override via WANDER_TRANSPORT=streamable-http + PORT.
13
+ ENV WANDER_TRANSPORT=stdio
14
+
15
+ EXPOSE 8000
16
+
17
+ CMD ["python", "-m", "wander_agent.server"]
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Viraj Mishra
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.