Skip to main content
Glama

TrackRival MCP Server 🎯

npm version Website License: MIT

Official Model Context Protocol (MCP) server for TrackRival — The real-time SaaS pricing radar & competitor intelligence engine.

Give your AI agent (Claude Desktop, Cursor, Windsurf, OpenDevin, Antigravity) the superpower to query verified 2026 SaaS pricing tiers, compare developer tools side-by-side, and inspect recent changelog updates without leaving your coding environment.


âš¡ Features & Available Tools

Tool

Description

Example Query

trackrival_compare_tools

Compare pricing, free tier limits, and feature differences between two tools side-by-side.

"Compare Neon and Supabase pricing for my app."

trackrival_get_tool_pricing

Retrieve up-to-date pricing tiers, unit rates, and free tier status for any monitored tool.

"What are OpenAI's latest API token rates?"

trackrival_search_tools

Search 70+ tracked tools by category (AI, Hosting, DB, Auth, Payments, etc.) or keyword.

"Find auth tools with a generous free tier."

trackrival_get_changelog

Retrieve the latest shipping updates and release notes for a product.

"What new features did Vercel ship this month?"

All responses provide live data verified daily by TrackRival, with direct links back to full visual telemetry pages.


Related MCP server: toolradar-mcp

🚀 Quick Setup

Option 1: Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "trackrival": {
      "command": "npx",
      "args": ["-y", "trackrival-mcp"]
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json


Option 2: Cursor IDE

  1. Open Cursor Settings -> Features -> MCP.

  2. Click + Add New MCP Server.

  3. Fill in:

    • Name: trackrival

    • Type: command

    • Command: npx -y trackrival-mcp


Option 3: Smithery (1-Click Install)

To automatically install for Claude Desktop via Smithery:

npx -y @smithery/cli install trackrival-mcp --client claude

🛠 Monitored Categories

TrackRival continuously tracks 70+ industry-leading developer & SaaS platforms across 8 core categories:

  • AI Infrastructure: OpenAI, Anthropic, Replicate, Mistral, Cohere, Together AI, OpenRouter, Hugging Face

  • Databases: Supabase, Neon, PlanetScale, Turso, MongoDB Atlas, CockroachDB, Redis Cloud, Xata, Upstash

  • Hosting & Compute: Vercel, Netlify, Railway, Render, Fly.io, Heroku, AWS Amplify, Koyeb, Cloudflare Pages

  • Authentication: Clerk, Auth0, WorkOS, Descope, Kinde, Stytch, FusionAuth, Logto

  • Payments & Billing: Stripe, Lemon Squeezy, Paddle, Polar, Chargebee, Recurly, FastSpring, Braintree

  • Email & Messaging: Resend, Postmark, Loops, SendGrid, Mailgun, Brevo, MailerSend, Customer.io

  • Project Management: Linear, Notion, Jira, ClickUp, Asana, Monday.com, Trello, Basecamp, Todoist

  • Analytics: PostHog, Mixpanel, Amplitude, Plausible, Fathom, June, Heap, FullStory



📄 License

MIT © TrackRival

Available Tools

4 tools
trackrival_compare_toolsA

Compare pricing tiers, free limits, and feature differences between two developer or SaaS tools side-by-side (e.g., 'neon' vs 'supabase', 'openai' vs 'replicate', 'linear' vs 'clickup').

ParametersJSON Schema
NameRequiredDescriptionDefault
toolAYesSlug or name of the first tool (e.g. 'neon', 'supabase', 'openai', 'linear').
toolBYesSlug or name of the second tool (e.g. 'supabase', 'replicate', 'clickup').

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It does not disclose any side effects, authentication requirements, rate limits, or error behavior. However, the action is inherently a read-only comparison and the description does not contradict or mislead. It adds no context beyond the core action, which is acceptable for a simple tool but leaves some behavioral aspects unaddressed.

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 a single, front-loaded sentence that states the purpose and immediately provides examples. There is zero fluff or redundancy; every element earns its place.

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?

For a two-parameter tool with no output schema and no nested objects, the description is adequately complete. It does not specify the output format or error handling, but those are not strictly necessary given the tool's simplicity. The examples and parameter descriptions together give an agent enough to invoke it correctly.

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 input schema covers both parameters at 100% with descriptions for toolA and toolB. The description adds only minor context by specifying 'developer or SaaS tools' and giving examples, but the schema already explains what each parameter is. This matches the baseline for high schema coverage, where the description adds minimal value.

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 a specific verb ('compare') and resource ('two developer or SaaS tools'), and enumerates the exact dimensions compared (pricing tiers, free limits, feature differences). It also provides concrete examples that immediately distinguish it from sibling tools like trackrival_get_tool_pricing (single-tool pricing) and trackrival_search_tools (search).

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 implies usage for side-by-side comparison of two tools, and the examples make the intended scenario clear. However, it does not explicitly mention when to prefer this over alternatives (e.g., 'for a single tool use get_tool_pricing'), so the guidance is clear but not fully explicit with exclusions.

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

trackrival_get_changelogA

Get the latest product updates, feature releases, and changelog notes for a specific SaaS tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesSlug of the tool (e.g. 'neon', 'supabase', 'openai').

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 must carry the behavioral disclosure. It states the tool returns updates, features, and notes, but does not clarify whether it is read-only (implied by 'Get'), response format, pagination, or any potential side effects. It provides basic intent but lacks depth.

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 a single, efficient sentence with no wasted words. It front-loads the core purpose and is immediately understandable. Perfectly concise for a tool with one parameter.

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?

For a simple tool with one well-documented parameter and no output schema, the description is adequate. It communicates the core action and target. However, it could hint at the return type or any constraints (e.g., only latest vs. full history) to be fully complete, but it's sufficient for an agent to invoke correctly.

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 baseline is 3. The description adds no new meaning to the 'slug' parameter beyond what the schema already provides; it merely restates that it targets a specific tool. No additional context is given.

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 'Get' and the resource 'latest product updates, feature releases, and changelog notes' for a specific tool. This unambiguously distinguishes it from siblings like compare, pricing, and search, which serve different purposes.

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 context is clear: this tool is for retrieving changelog data for a specific tool, while siblings handle pricing, comparison, and search. It doesn't explicitly mention when not to use it, but the resource type makes the intent obvious, so no exclusions are needed.

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

trackrival_get_tool_pricingA

Retrieve verified 2026 pricing tiers, starting prices, free tier availability, and features for any monitored SaaS or developer tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesSlug or name of the tool (e.g. 'openai', 'supabase', 'stripe', 'vercel', 'clerk').

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It clearly indicates a read-only operation and lists what is returned, but it does not disclose potential caveats such as whether pricing may be missing for some tools, how 'verified' is maintained, or what happens on lookup failure or rate limits.

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 a single, tightly written sentence with the verb and purpose up front. Every clause contributes specific information, with no filler or repetition.

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?

For a one-parameter, no-output-schema retrieval, the description covers the core: what data is returned and the scope of valid inputs. It does not go into error handling or output shape, but the enumerated return fields and the schema's slug documentation make it sufficient for most agent calls.

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 input schema fully documents 'slug' with examples and marks it required (coverage 100%), so the description does not need to add parameter detail. It adds the context that the tool must be 'monitored,' but offers no additional semantic value beyond the schema.

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 opens with the specific verb 'Retrieve' and names a concrete resource: verified 2026 pricing tiers, starting prices, free tier availability, and features. It also scopes the resource to 'any monitored SaaS or developer tool,' which clearly separates it from siblings focused on comparing, searching, or changelogs.

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?

Usage context is implied ('Retrieve ... for any monitored SaaS or developer tool') but there is no explicit when-to-use/when-not-to-use guidance or reference to alternatives like trackrival_compare_tools, trackrival_search_tools, or trackrival_get_changelog. An agent must infer that pricing lookup is distinct from those operations.

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

trackrival_search_toolsB

Search the TrackRival directory of monitored SaaS tools by keyword or category (ai, hosting, database, auth, payments, email, project-management, analytics).

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNoSearch keyword or tool name.
categoryNoOptional category filter: 'ai', 'hosting', 'database', 'auth', 'payments', 'email', 'project-management', 'analytics'.

TDQS

B3.3/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 data source and filter dimensions, but does not describe the result shape, whether query and category can be combined, pagination/limits, or default behavior when no parameters are supplied. The read-only nature is only implicit in 'Search.'

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?

One sentence that front-loads the verb, resource, and primary search modes. The category list is useful despite being duplicated in the schema, and there is no filler or redundancy.

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 simple two-parameter search tool, the description is mostly adequate, but it does not clarify how the optional parameters interact or what happens when both are omitted. Without an output schema, it also leaves the return format unspecified.

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. The description adds the directory context and repeats the category list, but provides no additional meaning about parameter formats, combination rules, or edge cases. Baseline 3 is appropriate.

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 names a specific action ('Search'), a specific resource ('the TrackRival directory of monitored SaaS tools'), and the two search dimensions (keyword and category). It is clearly distinguishable from the sibling tools for comparing, pricing, and changelogs.

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 explains what the tool does but gives no guidance on when to use it instead of trackrival_compare_tools, trackrival_get_tool_pricing, or trackrival_get_changelog. There is no exclusion or alternative-selection guidance.

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. 4 tool updatesv1.0.0
    • First observedtrackrival_compare_tools
    • First observedtrackrival_get_changelog
    • First observedtrackrival_get_tool_pricing
    • First observedtrackrival_search_tools

TDQS

A3.8/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: searching, comparing, retrieving pricing, and fetching changelogs. There is no functional overlap between any pair of tools.

Naming Consistency4/5

All tools follow the 'trackrival_<verb>_<object>' pattern, which is consistent. Minor inconsistency exists in whether 'tool' is included (e.g., get_tool_pricing vs get_changelog), but it does not cause confusion.

Tool Count4/5

4 tools is appropriate for a focused directory/comparison service. It covers core actions without bloat, and each tool has a clear role.

Completeness4/5

The set covers search, pricing details, side-by-side comparison, and changelog updates. A potential gap is a tool for retrieving general tool metadata beyond pricing, but pricing includes features, so agents can likely fulfill most needs.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers