OurFamilyWizard MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OurFamilyWizard MCPWhat's on the kids' calendar this week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AllTrails MCP
A Model Context Protocol server that connects Claude to AllTrails, giving you natural-language access to trail search, trail details, reviews, photos, weather, and your own saved lists and hiking history.
AI-developed project. This codebase was entirely built and is actively maintained by Claude. No human has audited the implementation. Review all code and tool permissions before use.
Unofficial and unsupported. AllTrails has no public API. This server reverse-engineers the internal API used by alltrails.com. That API is fronted by DataDome bot protection and governed by AllTrails' Terms of Service. It may break without notice, and automated access may violate their ToS — a prior third-party AllTrails project was disabled at AllTrails' request. Use this only for your own account, at your own discretion.
What you can do
Ask Claude things like:
"Find waterfall trails near Portland, Oregon"
"What's the AllTrails rating and length of trail 10236086?"
"Summarize the recent reviews for this trail"
"What trails have I marked completed?"
"Show me the trails on my saved 'weekend hikes' list"
Related MCP server: Cozi MCP Server
Requirements
Claude Desktop (or any MCP host)
Node.js 22.5 or later
A signed-in AllTrails browser session (see Authentication)
Acknowledgement of Terms
By using this MCP server, you acknowledge and agree to the following:
1. This server accesses AllTrails using your own signed-in session. It reuses the cookies from your own browser session; it cannot access anyone else's account or private data.
2. AllTrails' Terms of Service govern your use of this server, just as they govern your direct use of AllTrails. AllTrails restricts automated access and scraping, and fronts its API with bot protection. Automated use through this server may breach those terms. You are agreeing to AllTrails' terms every time you invoke a tool.
3. Personal use only. This project is not affiliated with, endorsed by, or sponsored by AllTrails, LLC. It is a personal automation tool. Do not use it to bulk-extract AllTrails' data, to build a competing product, or in any way that burdens their service.
4. You accept full responsibility for any consequences — technical (rate-limiting, CAPTCHA challenges, account action) or otherwise. The maintainer provides no warranty and no support.
This section is the maintainer's good-faith summary — it is not legal advice and does not modify or supersede AllTrails' actual ToS.
Installation
1. Clone and build
git clone https://github.com/chrischall/alltrails-mcp.git
cd alltrails-mcp
npm install
npm run build2. Add to Claude Desktop
Edit your Claude Desktop config file:
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the alltrails entry inside "mcpServers" (create the key if it doesn't exist):
{
"mcpServers": {
"alltrails": {
"command": "node",
"args": ["/absolute/path/to/alltrails-mcp/dist/index.js"],
"env": {
"ALLTRAILS_COOKIE": "datadome=...; _at_session=..."
}
}
}
}Replace /absolute/path/to/alltrails-mcp with the path where you cloned the repo.
3. Restart Claude Desktop
Quit completely (Cmd+Q on Mac, not just close the window) and relaunch.
4. Verify
Ask Claude: "Search AllTrails for trails near me."
Authentication
AllTrails fronts its internal API with DataDome bot protection, so requests must carry the exact Cookie header a real signed-in browser sends — it includes a short-lived datadome anti-bot cookie plus (for per-user data) your login session. The server resolves that cookie via two paths, whichever succeeds first:
ALLTRAILS_COOKIEenv var (explicit). Paste a Cookie header captured from your browser: open DevTools → Network on alltrails.com, click any/api/alltrails/...request, and copy theCookierequest header. Because thedatadomecookie is short-lived, this needs periodic refresh.fetchproxy fallback (automatic). With the fetchproxy browser extension installed and signed into alltrails.com, the server captures the
cookie(and livex-at-key) request header once from your signed-in tab, then operates from Node directly — the extension is not in the request hot path. SetALLTRAILS_DISABLE_FETCHPROXY=1to turn a missing cookie into a hard error (useful in headless CI).
If neither is available, the server throws with both fixes spelled out.
Configuration
Env var | Required | Purpose |
| No | Cookie header from a signed-in alltrails.com session (must include |
| No | Numeric user id for the per-user tools; defaults to the signed-in user via |
| No |
|
| No | Overrides the embedded |
| No | Override the corresponding request headers. |
| No |
|
Available tools
All tools are read-only — this server never writes to AllTrails.
Tool | What it does |
| Search trails by text and/or lat/lng |
| Paginated listing of trails in a state/region ( |
| Paginated listing of trails in a country, e.g. |
| Trail details ( |
| User reviews for a trail ( |
| Photos for a trail |
| Weather overview for a trail |
| The signed-in user's profile |
| A user's saved lists / favorites |
| A user's completed trails |
| A user's activity feed |
The per-user tools default to the signed-in user (resolved via /api/alltrails/me or ALLTRAILS_USER_ID); pass userId to target a public profile.
Troubleshooting
403 Forbidden — AllTrails' DataDome protection rejected the request, usually because the datadome cookie in your captured session went stale. Refresh a signed-in alltrails.com tab (or re-run the fetchproxy capture) and retry.
"AllTrails auth: set ALLTRAILS_COOKIE…" — neither auth path is configured. Either set ALLTRAILS_COOKIE in your config, or install the fetchproxy extension and sign into alltrails.com.
Empty / unexpected results — the internal AllTrails endpoints are undocumented and change over time; responses may shift. Enable ALLTRAILS_DEBUG_LOG=1 to inspect the raw traffic on stderr.
Development
npm test # run the vitest suite
npm run build # tsc → dist/, then esbuild bundle → dist/bundle.js
npm run dev # node --env-file=.env dist/index.js (requires built dist)vitest.config.ts enforces 100% coverage on src/** (except the stdio entry point). Main is protected — all changes land via PR. See CLAUDE.md for the full PR + release flow.
Project structure
src/
index.ts MCP server entry (runMcp + StdioServerTransport)
protocol.ts Wire-level constants (BASE_URL, app key, headers, TTL)
client.ts AllTrailsClient — cookie-session auth, 401/403 re-capture, 429 retry
auth.ts resolveAuth(): env cookie → fetchproxy capture → error
config.ts Env parsing (api key, headers, timeout, user id, debug)
validate.ts parseAllTrails(): zod validation of responses at call sites
tools/
_shared.ts Response helpers + resolveUserId
trails.ts get_trail, reviews, photos, weather
explore.ts search, list by state/country
user.ts profile, saved lists, completed trails, activity feed
tests/ Mirrors src/; mocks AllTrailsClient.request via vi.spyOnAuth flow
Auth resolution lives in src/auth.ts. Two paths, in priority order (then error):
ALLTRAILS_COOKIEset → used verbatim as theCookie:header.fetchproxy →
@fetchproxy/bootstrapcaptures thecookie+x-at-keyrequest headers once from your signed-inwww.alltrails.com/api/alltrails/*traffic, then closes the bridge.
The resolved cookie session is managed by the fleet's CookieSessionManager (single-flight login, reactive re-capture on a 401/403, one replay). All API calls then go out from Node directly — fetchproxy is not in the request hot path.
Also see the fetchproxy README for extension install instructions.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrischall/alltrails-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server