Skip to main content
Glama
remuzel

Polarsteps MCP Server

by remuzel
WARNING


This MCP server uses the polarsteps-api package to access Polarsteps data through undocumented APIs. Important: Please read the associated legal disclaimer and terms of use before using this tool. By using this MCP server, you agree to the terms outlined in the API package and acknowledge the associated risks.

Polarsteps MCP Server

A Model Context Protocol (MCP) server that enables Claude and other AI assistants to access Polarsteps travel data. Query user profiles, trip details, travel statistics, and search through travel histories with natural language.

MCP Server Badge Smithery Badge

Features

  • User Profiles: Get profile info, social stats, and travel metrics

  • Trip Data: Access detailed trip information, timelines, and locations

  • Smart Search: Find trips by destination, theme, or keywords with fuzzy matching

  • Travel Analytics: Retrieve comprehensive travel statistics and achievements

Related MCP server: Flight Ticket MCP Server

Quick Start

Until I add it to PyPI, the quickest way to get started is using Smithery:

npx -y @smithery/cli install @remuzel/polarsteps-mcp --client claude

Then configure your Polarsteps token.

Configuration

You'll need your Polarsteps remember_token to authenticate API requests.

Getting Your Token

  1. Go to https://www.polarsteps.com/ and make sure you're logged in

  2. Open your browser's Dev Tools:

    • Firefox: Shift+F9 → Storage tab

    • Chrome: F12 → Application tab → Cookies

  3. Find the remember_token cookie for https://www.polarsteps.com

  4. Copy the token value

Setting the Token

Set your token as an environment variable:

export POLARSTEPS_REMEMBER_TOKEN="your_remember_token_here"

Usage

With Claude Desktop

Add this configuration to your Claude Desktop settings:

{
  "mcpServers": {
    "polarsteps": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/remuzel/polarsteps-mcp", "polarsteps-mcp"],
      "env": {
        "POLARSTEPS_REMEMBER_TOKEN": "your_remember_token_here"
      }
    }
  }
}

Example Queries

Once configured, you can ask Claude things like:

  • "Show me travel stats for username 'johndoe'"

  • "Tell me about johndoe's trip to Japan"

  • "What country should johndoe add to their bucketlist?"

Local Testing

Test the MCP server locally with the inspector:

npx @modelcontextprotocol/inspector uvx --from git+https://github.com/remuzel/polarsteps-mcp polarsteps-mcp

Installation from Source

For development or manual installation:

# Clone the repository
git clone https://github.com/remuzel/polarsteps-mcp
cd polarsteps-mcp

# Setup development environment
just setup
# or without just:
uv sync --dev && uv pip install -e .

Development

Running Tests

just test

Local MCP Testing

just test-mcp

Code Formatting

just lint

Available Tools

7 tools
get_tripA

Get comprehensive details about a specific trip including summary, timeline, route information, individual steps/locations, weather data, and engagement metrics. Use after get_trip_log when you need detailed information about specific locations or comprehensive trip data.

ParametersJSON Schema
NameRequiredDescriptionDefault
trip_idYesThe unique numerical identifier of a Polarsteps trip (typically 7+ digits)
n_stepsNoMaximum number of trip steps/locations to include in the response (each step contains photos and descriptions from specific locations).

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It describes what data is returned (comprehensive details including specific elements) and provides usage sequencing guidance, but doesn't mention important behavioral aspects like error conditions, rate limits, authentication requirements, or pagination behavior for the n_steps parameter.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized with two sentences that each serve distinct purposes: the first describes what the tool returns, the second provides usage guidance. It's front-loaded with the core functionality. Could be slightly more concise by combining elements, but overall efficient with zero wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description provides good purpose and usage guidance but lacks important contextual information. It doesn't describe the return format, error handling, or behavioral constraints. The description compensates somewhat with detailed content listing, but doesn't fully address the gaps left by missing structured metadata.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema descriptions. It mentions 'individual steps/locations' which relates to the n_steps parameter but doesn't provide additional semantic context beyond the schema's description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('Get comprehensive details') and resources ('about a specific trip'), listing the exact data elements returned (summary, timeline, route information, steps/locations, weather data, engagement metrics). It effectively distinguishes this from sibling tools like get_trip_log by specifying when to use each.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use this tool versus alternatives: 'Use after get_trip_log when you need detailed information about specific locations or comprehensive trip data.' This clearly differentiates it from get_trip_log and implies it's for more detailed information than basic trip listing tools like get_trips.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_trip_logB

Get an overview of the specific trip; this includes just a list of summarized steps, each including timestamp/title/description/location. Use this first for trip overviews before diving into detailed information.

ParametersJSON Schema
NameRequiredDescriptionDefault
trip_idYesThe unique numerical identifier of a Polarsteps trip (typically 7+ digits)

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. While it describes the return format (summarized steps with specific fields), it doesn't address important behavioral aspects like whether this is a read-only operation, potential rate limits, authentication requirements, error conditions, or pagination behavior for large trips.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately concise with two sentences that each serve distinct purposes: the first states what the tool returns, the second provides usage guidance. It's front-loaded with the core functionality and avoids unnecessary verbiage.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read operation with no output schema, the description provides adequate but incomplete context. It explains the return format and usage sequencing, but lacks information about error handling, response structure beyond field names, and behavioral constraints that would be important for an agent to use this tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with the single parameter 'trip_id' well-documented in the schema. The description doesn't add any parameter-specific information beyond what the schema provides, which is acceptable given the high schema coverage. The baseline of 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get an overview of the specific trip' with specific content details ('list of summarized steps, each including timestamp/title/description/location'). It distinguishes from potential siblings by focusing on summarized overview rather than detailed information, though it doesn't explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear contextual guidance: 'Use this first for trip overviews before diving into detailed information.' This indicates when to use this tool (initial overview) versus alternatives (detailed information tools), though it doesn't explicitly name specific sibling tools or state when NOT to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tripsA

Fetch a list of a user's recent trips with summary information including trip names, dates, duration, and basic stats. Ideal for browsing someone's travel history or finding trip IDs for detailed exploration. Use n_trips parameter to control how many recent trips to retrieve (default: 5).

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesThe Polarsteps username whose trips you want to retrieve
n_tripsNoMaximum number of recent trips to return (ordered by most recent first)

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool fetches 'recent trips' with a default ordering ('most recent first') and a default parameter value, which adds useful context. However, it lacks details on potential errors (e.g., invalid username), rate limits, or authentication needs, leaving gaps for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and front-loaded, with the first sentence stating the core purpose and the second providing usage context and parameter guidance. Every sentence earns its place by adding value without unnecessary repetition or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is partially complete. It covers the purpose and basic usage but lacks details on output format, error handling, or behavioral constraints. Without annotations or an output schema, more context would be helpful for an agent to use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already fully documents both parameters. The description adds marginal value by mentioning the 'n_trips' parameter controls how many recent trips to retrieve and its default, but this is redundant with the schema's default and description. No additional semantic context is provided beyond what the schema offers.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Fetch') and resource ('list of a user's recent trips'), specifying what summary information is included (trip names, dates, duration, basic stats). It distinguishes from siblings like 'get_trip' (singular) by emphasizing it retrieves multiple trips for browsing history, not detailed exploration.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool ('Ideal for browsing someone's travel history or finding trip IDs for detailed exploration'), implying it's for summary-level data. However, it does not explicitly state when not to use it or name alternatives among siblings like 'search_trips' for filtered searches, leaving some ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_user_profileC

Get a users' profile overview including their living location and their number of countries visited & trips.

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesThe username of the Polarstep user to look for.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves profile data, implying a read-only operation, but doesn't address key behavioral aspects such as authentication requirements, error handling (e.g., for invalid usernames), rate limits, or response format. The description adds minimal context beyond the basic purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. It avoids redundancy and wastes no words, though it could be slightly more structured (e.g., by separating usage context). Every part of the sentence contributes meaning, making it appropriately concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for a tool with one parameter. It specifies what data is retrieved but omits critical context such as authentication needs, error scenarios, or the structure of the returned profile overview. For a read operation with no structured output documentation, more behavioral and response details are needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the single parameter 'username' clearly documented in the schema. The description doesn't add any parameter-specific details beyond what the schema provides (e.g., format constraints or examples). Since the schema handles the parameter documentation adequately, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a users' profile overview' with specific content details ('living location and their number of countries visited & trips'). It uses a specific verb ('Get') and identifies the resource ('profile overview'), but doesn't explicitly distinguish it from sibling tools like 'get_user_social' or 'get_user_stats' which might provide overlapping or related user information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_user_social' or 'get_user_stats', nor does it specify prerequisites, exclusions, or contextual cues for selection. Usage is implied by the purpose but lacks explicit direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_user_socialC

Get a users' social information including: followers, followees, their count and if they're considered popular.

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesThe username of the Polarstep user to look for.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes what information is retrieved but lacks details on behavioral traits such as authentication requirements, rate limits, error handling, or data freshness. For a read operation tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, stating the core purpose in a single sentence with specific details. There's no unnecessary verbosity, and every part of the sentence contributes to understanding the tool's function. However, it could be slightly improved by structuring it more clearly (e.g., separating the list of information retrieved).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (simple read operation with one parameter) and the absence of annotations and output schema, the description is minimally adequate. It explains what data is retrieved but doesn't cover behavioral aspects or usage context. With no output schema, it doesn't describe return values, which is a gap, but the description compensates somewhat by listing the information included.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the parameter 'username' fully documented in the schema. The description doesn't add any parameter-specific information beyond what the schema provides (e.g., it doesn't clarify format constraints or examples for 'username'). Since the schema handles the heavy lifting, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a users' social information' with specific details about what information is retrieved (followers, followees, count, popularity status). It uses a specific verb ('Get') and identifies the resource ('social information'), making the purpose unambiguous. However, it doesn't explicitly differentiate this tool from sibling tools like 'get_user_profile' or 'get_user_stats', which might also retrieve user-related data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_user_profile' or 'get_user_stats', nor does it specify contexts or prerequisites for usage. The only implied usage is retrieving social data for a user, but there's no explicit when/when-not or alternative tool recommendations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_user_statsB

Get available travel statistics and metrics for a Polarsteps user, including countries visited, total distance traveled, trip counts, and detailed travel analytics. Perfect for getting a complete picture of someone's travel history and achievements.

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesThe username of the Polarstep user to look for.

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions retrieving 'available travel statistics' but doesn't specify if this requires authentication, rate limits, data freshness, or error conditions. For a read operation with zero annotation coverage, this leaves significant gaps in understanding behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, with two sentences that efficiently convey purpose and value. The first sentence outlines the core functionality, and the second adds context without redundancy. It could be slightly more structured but avoids unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (read operation with one parameter) and no annotations or output schema, the description is adequate but incomplete. It covers the purpose and high-level output ('statistics and metrics') but lacks details on return format, error handling, or behavioral constraints, which are important for a tool without structured output documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the parameter 'username' documented as 'The username of the Polarstep user to look for.' The description adds context by specifying it's for 'a Polarsteps user' and relates to 'travel history,' but doesn't provide additional syntax or format details beyond what the schema offers. Baseline 3 is appropriate when the schema handles parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get available travel statistics and metrics for a Polarsteps user' with specific details like 'countries visited, total distance traveled, trip counts, and detailed travel analytics.' It distinguishes from siblings by focusing on statistics/analytics rather than trips or profiles, though it doesn't explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for 'getting a complete picture of someone's travel history and achievements,' suggesting it's for comprehensive analytics. However, it doesn't provide explicit guidance on when to use this versus sibling tools like get_user_profile or get_trips, nor does it mention any exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_tripsA

Search through a user's trips by name/title using fuzzy matching to find specific trips. Ideal for finding trips by destination (e.g., 'japan', 'italy'), themes (e.g., 'honeymoon', 'business'), or partial name matches. Supports flexible search terms that don't need to match exactly - the fuzzy matching will find relevant trips even with approximate spelling or partial keywords. Use this as the first step when looking for specific trips by destination, theme, or name.

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesThe Polarsteps username whose trips you want to search through
name_queryYesSearch term to match against trip names/titles (supports partial matching and fuzzy search)

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behavioral traits: the fuzzy matching mechanism ('supports flexible search terms', 'approximate spelling or partial keywords'), search scope ('by name/title', 'destination', 'themes'), and that it's a search operation (implied read-only). However, it doesn't mention potential limitations like result limits, sorting, or error conditions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and appropriately sized. It front-loads the core purpose, provides specific examples, explains the fuzzy matching behavior, and ends with clear usage guidance. Every sentence adds value without redundancy or unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (search operation with fuzzy matching), no annotations, and no output schema, the description does a good job covering the essential context. It explains what the tool does, when to use it, and how the search works. The main gap is lack of information about return format or result structure, which would be helpful since there's no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds some context about how 'name_query' works with fuzzy matching and examples of search terms, but doesn't provide additional semantic meaning beyond what's in the schema descriptions. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('search through a user's trips') and resources ('trips'), and distinguishes it from siblings by specifying fuzzy matching capabilities. It explicitly mentions what it searches (name/title, destination, themes) and how it works (fuzzy matching, partial matches).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance: 'Use this as the first step when looking for specific trips by destination, theme, or name.' This clearly indicates when to use this tool versus alternatives (e.g., get_trips for unfiltered listing), and specifies the ideal scenarios (finding trips by destination, theme, or partial name).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updates
    • First observedget_trip
    • First observedget_trip_log
    • First observedget_trips
    • First observedget_user_profile
    • First observedget_user_social
    • First observedget_user_stats
    • First observedsearch_trips

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation4/5

The tools are mostly distinct with clear purposes, but there is some overlap between get_trip and get_trip_log that could cause confusion. get_trip_log is described as an 'overview' with summarized steps, while get_trip provides 'comprehensive details', but the descriptions suggest using get_trip_log first before get_trip, which might lead to misselection if an agent needs just basic info versus full details. Other tools like get_user_profile, get_user_social, and get_user_stats are well-differentiated.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscores, such as get_trip, get_trips, get_user_profile, and search_trips. There are no deviations in naming conventions, making the set predictable and easy to understand for an agent.

Tool Count5/5

With 7 tools, the server is well-scoped for a Polarsteps travel data domain. Each tool serves a specific purpose, from fetching user profiles and social info to retrieving trip details and searching, without feeling too sparse or overloaded. The count aligns well with the apparent scope of accessing travel history and user data.

Completeness4/5

The tool set covers key aspects of the Polarsteps domain, including user profiles, social information, statistics, and trip retrieval with search capabilities. However, there are minor gaps, such as no tools for updating or creating trips (e.g., create_trip or update_trip), which might limit full CRUD operations, but the existing tools support comprehensive read and search workflows effectively.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    A TypeScript server that acts as a bridge to the Strava API, enabling LLMs to access users' activities, routes, segments, and athlete data through natural language interaction.
    2
    24
    338 npm
    486
    MIT
  • A
    license
    B
    quality
    F
    maintenance
    A server that provides real-time flight information query capabilities to AI assistants, allowing them to access detailed flight statuses, airport details, and related travel information.
    10
    48
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A comprehensive travel aggregation server that enables AI assistants to search for flights and hotels, track flight statuses in real-time, and retrieve airport information. It integrates with Amadeus and AviationStack APIs to provide data on pricing, schedules, and travel routes through natural language.
    4
    MIT
  • F
    license
    C
    quality
    D
    maintenance
    Enables AI assistants to manage a self-hosted AirTrail flight tracking instance, providing natural language access to flight data, travel history, and statistics.
    3
    3
    -