Polarsteps MCP Server
An MCP server that enables Claude and other AI assistants to access Polarsteps travel data, allowing users to query profiles, trip details, travel statistics, and search trip history using natural language.
Get this MCP server
An MCP server that enables Claude and other AI assistants to access Polarsteps travel data, allowing users to query profiles, trip details, travel statistics, and search trip history using natural language.
Installation
Smithery
npx -y @smithery/cli install @remuzel/polarsteps-mcp --client claude
From Source
git clone https://github.com/remuzel/polarsteps-mcp
cd polarsteps-mcp
just setup
# or without just:
uv sync --dev && uv pip install -e .
Local Testing
npx @modelcontextprotocol/inspector uvx --from git+https://github.com/remuzel/polarsteps-mcp polarsteps-mcp
Configuration
Claude Desktop
{
"mcpServers": {
"polarsteps": {
"command": "uvx",
"args": ["--from", "git+https://github.com/remuzel/polarsteps-mcp", "polarsteps-mcp"],
"env": {
"POLARSTEPS_REMEMBER_TOKEN": "your_remember_token_here"
}
}
}
}
Capabilities
- User Profiles: Retrieve profile information, social statistics, and travel metrics
- Trip Data: Access detailed trip information, timelines, and locations
- Smart Search: Search trips by destination, theme, or keywords with fuzzy matching
- Travel Analytics: Get comprehensive travel statistics and achievements
Environment Variables
Required
POLARSTEPS_REMEMBER_TOKEN- Authentication token from Polarsteps website cookies for API access
Usage Examples
Show me the travel statistics for user 'johndoe'
Tell me about johndoe's trip to Japan
What country should johndoe add to their wishlist?
Notes
This MCP server uses the polarsteps-api package to access Polarsteps data through undocumented APIs. Users should read the appropriate legal disclaimer and terms of use before using this tool. To obtain your remember_token: visit polarsteps.com while logged in, open your browser's developer tools, find the remember_token cookie, and copy its value.