Skip to main content
Glama
meertrack

Meertrack MCP

Official
by meertrack

@meertrack/mcp

MCP protocol 2025-11-25 8 tools · 3 prompts npm CI

Model Context Protocol server for Meertrack. Ask your agent "what did my competitors ship this week?" from Claude, Cursor, Claude Code, VS Code, Windsurf, Cline, ChatGPT, or anywhere that speaks MCP.

Wraps the Meertrack v1 REST API as 8 read-only tools and 3 prompt workflows. No backend changes, same mt_live_ keys, same rate limits.


Pick your transport

Local (stdio)

Remote (Streamable HTTP)

Setup time

30 seconds (paste a JSON block)

10 seconds (paste a URL)

Best for

Individual Pro customers; all Claude Desktop plans; any IDE on your laptop

Team/Enterprise custom connectors; Claude.ai web; remote-capable IDEs

Runs where

Your machine (npx -y @meertrack/mcp)

Meertrack's Fly.io fleet (https://mcp.meertrack.com/mcp)

Auth

MEERTRACK_API_KEY env var

OAuth 2.1 (browser flow, recommended) or Authorization: Bearer mt_live_… header

Plan gating

Works on Claude Pro, Team, Enterprise

Claude Desktop "Add custom connector" is Team/Enterprise only

If you're on Claude Pro, use the local (stdio) path. The "Add custom connector" button in the Claude Desktop settings is gated to Team/Enterprise, and pasting https://mcp.meertrack.com/mcp there won't do anything on a Pro plan.

Related MCP server: Competitor Monitor AI MCP

Get an API key

Mint a production key at Settings → API Keys in the Meertrack app. Keys start with mt_live_. Only production keys work; there is no mt_test_ flavour.

Rate limits. Each API key shares a 60 requests/minute budget enforced upstream. If you run the MCP from multiple clients at once (Claude Desktop + Cursor + a background agent) they all draw from the same bucket. Mint a separate key per workstation or per agent to isolate budgets. The tool-error message on 429 includes both a human-readable reset time and the raw X-RateLimit-Reset epoch so the agent can back off automatically.


All local-mode clients use the same shape: npx -y @meertrack/mcp with MEERTRACK_API_KEY in the environment. What differs is the config file and the surrounding JSON key.

Drop-in copies of every config file below live in examples/.

Claude Desktop (all plans)

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "meertrack": {
      "command": "npx",
      "args": ["-y", "@meertrack/mcp"],
      "env": {
        "MEERTRACK_API_KEY": "mt_live_..."
      }
    }
  }
}

Gotcha: Claude Desktop only re-reads this file on launch. Fully quit (⌘Q on macOS) and reopen. Reloading the window is not enough.

Cursor

Edit ~/.cursor/mcp.json (or .cursor/mcp.json in a project):

{
  "mcpServers": {
    "meertrack": {
      "command": "npx",
      "args": ["-y", "@meertrack/mcp"],
      "env": {
        "MEERTRACK_API_KEY": "mt_live_..."
      }
    }
  }
}

Claude Code (CLI)

claude mcp add meertrack npx -y @meertrack/mcp \
  --env MEERTRACK_API_KEY=mt_live_...

VS Code (GitHub Copilot MCP)

Edit .vscode/mcp.json (per-workspace) or the user settings equivalent:

{
  "servers": {
    "meertrack": {
      "command": "npx",
      "args": ["-y", "@meertrack/mcp"],
      "env": {
        "MEERTRACK_API_KEY": "mt_live_..."
      }
    }
  }
}

Gotcha: VS Code uses servers, not mcpServers. The Copilot MCP picker won't find your server if you use the Claude Desktop key.

Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "meertrack": {
      "command": "npx",
      "args": ["-y", "@meertrack/mcp"],
      "env": {
        "MEERTRACK_API_KEY": "mt_live_..."
      }
    }
  }
}

Gotcha: Windsurf's remote-connector shape uses serverUrl, not url. For the stdio config above, the shape is identical to Claude Desktop.

Cline (VS Code extension)

Cline's settings panel → "MCP Servers" → paste:

{
  "mcpServers": {
    "meertrack": {
      "command": "npx",
      "args": ["-y", "@meertrack/mcp"],
      "env": {
        "MEERTRACK_API_KEY": "mt_live_..."
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Remote install: Team/Enterprise + claude.ai web

All remote clients point at the same URL:

https://mcp.meertrack.com/mcp

Two auth paths are supported:

  • OAuth 2.1 (recommended) — spec-conformant MCP clients discover the authorization server at /.well-known/oauth-protected-resource/mcp (RFC 9728 §3.1; also served at the bare /.well-known/oauth-protected-resource for clients that probe the root), perform Dynamic Client Registration at https://meertrack.com/oauth/register, and drive the full PKCE-gated authorize → token flow. The user clicks "Connect", signs in at meertrack.com, hits Allow on the consent screen, and is done. No key handling. Access tokens are 1-hour JWTs (RS256, aud=https://mcp.meertrack.com/mcp); refresh tokens are rotated per OAuth 2.1 §4.3.1.

  • Authorization: Bearer mt_live_… — paste a static API key for custom connectors, CLI scripts, and any client that doesn't implement OAuth discovery yet.

Both paths terminate at the same workspace; pick whichever your client supports.

Claude Desktop (Team / Enterprise only: "Add custom connector")

Settings → Connectors → Add custom connector → paste the URL above. Do not paste a bearer token — leave the token field empty and click Add. Claude Desktop will open a browser window to meertrack.com for login and consent; on Allow, the connector surfaces the 8 tools automatically.

The "Add custom connector" button is not visible on Pro; use the stdio path above instead.

Claude.ai web (Connectors)

Same as above in the web app's Connectors panel.

Cursor (remote MCP)

{
  "mcpServers": {
    "meertrack": {
      "url": "https://mcp.meertrack.com/mcp",
      "headers": {
        "Authorization": "Bearer mt_live_..."
      }
    }
  }
}

ChatGPT MCP connectors

Paste the URL and bearer in the ChatGPT "Add MCP" dialog. Note: ChatGPT's bearer support is minimal today; full OAuth parity is tracked as Phase 11.

n8n / Zapier / …any Streamable HTTP client

  • Endpoint: https://mcp.meertrack.com/mcp

  • Method: POST

  • Headers: Authorization: Bearer mt_live_…, Accept: application/json, text/event-stream, MCP-Protocol-Version: 2025-11-25


The 8 tools

All read-only, all snake_case. Collection returns use the list_ prefix; row-detail returns use get_ (single id or a batch of ids). Every list response includes pagination.next_cursor and pagination.has_more, and agents must pass next_cursor back as cursor to fetch the next page.

Domain

Tool

Wraps

Notes

Identity

whoami

GET /me

Confirms workspace + subscription + rate-limit snapshot. Call first.

Competitors

list_competitors

GET /competitors

Defaults to expand=full so agents don't round-trip for socials/pages.

Competitors

get_competitor

GET /competitors/{id}

Profile + recent items from each tracked section (blog, pricing, jobs, ads, …) with per-section caps.

Activity

list_activities

GET /activity

Core "what shipped" feed. Default limit=50 to stay under tool-result size limits.

Activity

get_activity_items

GET /activity/items

Batch drill-in: full payloads for 1–100 row ids; unresolved ids returned in not_found.

Digests

list_digests

GET /digests

Cursor-paginated weekly digests. No total field (unlike activity).

Digests

list_latest_digests

GET /digests/latest

No params; one-shot "what happened this week".

Digests

get_digest

GET /digests/{id}

Full summary + themes for one competitor × period.

Full input / output / error-code documentation is on the tool descriptions themselves, and the MCP client displays them inline.

The 3 prompts

Slash commands in Claude Desktop / Cursor / Claude Code / any prompt-capable MCP client. Each one chains tool calls into a complete workflow.

Prompt

Args

Chains

/weekly_recap

none

list_latest_digests → per-competitor summary + highlights

/competitor_deep_dive

competitor_name

list_competitorsget_competitorlist_activities (last 30d)

/whats_new

days? (default 7)

list_activities from now - N days, grouped by competitor

Example invocations

  • /weekly_recap

  • /competitor_deep_dive competitor_name="Acme"

  • /whats_new days="14"

See examples/prompts.md for a dozen copy-paste user prompts grouped by use case (weekly check-in, feature spec research, pricing comparison, board-deck prep).


Troubleshooting

When the upstream API returns an error, the MCP tool response surfaces the upstream code in the error text. Map them:

Upstream code

What it means

Fix

unauthorized

Key is invalid, revoked, or expired

Mint a new key at Settings → API Keys and update the config

competitor_inactive

Competitor is archived in this workspace

Reactivate the competitor in the dashboard

forbidden_competitor

The id you passed isn't in this workspace

Call list_competitors first to discover valid ids

rate_limited

60 req/min cap hit

Wait until the reset timestamp in the error message, or mint a second key for the other client

not_found

No such row in this workspace

The id is either wrong or belongs to a different workspace

invalid_parameter / invalid_cursor

Bad input

Check the error message; cursors expire, so re-list from the start

Other common snags

  • Claude Desktop didn't pick up your config → quit and relaunch the app, not just close the window. Config is read at launch.

  • command not found: npx → install Node ≥ 20. The MCP pins engines.node.

  • Remote URL returns 401 with WWW-Authenticate: Bearer → your bearer is missing, malformed, or doesn't start with mt_live_.

  • You see 401s that clear up when you refresh the key → the bearer is fine; this is a spec-conformant "please authenticate" from the MCP. Send the Authorization header.

  • Running both stdio and remote with the same key → you're sharing a 60/min budget across both. Mint separate keys per client.


Semantic versioning

MCP tool schemas are part of the public API contract; agents cache them. So:

  • MAJOR: a tool is removed, or an existing tool's input/output schema breaks (required arg added, field renamed, enum value removed).

  • MINOR: a new tool, a new optional argument, or a new prompt.

  • PATCH: bug fixes, description improvements, internal refactors with no schema impact.

See CHANGELOG.md for the release history, and docs/RELEASING.md for the maintainer publish procedure.

Security & privacy

License

MIT.

Available Tools

8 tools
get_activity_itemsGet activity itemsA
Read-only
Inspect

Wraps GET /activity/items. Returns the full payload for one or more activity rows — the section-specific detail (full blog description, key points, pricing table, etc.) that the list_activities feed omits to stay lean.

Pass a list of row ids from a list_activities result (1–100). Resolving several at once is one call / one rate-limit hit — prefer it over many single lookups. Partial success is normal: ids that don't resolve (unknown, in another workspace, from an inactive period, or malformed) come back in not_found, not as an error. data order is not guaranteed — match results back by id. Digest ids are NOT activity rows: they land in not_found. Use get_digest for those. Errors: unauthorized, rate_limited, invalid_parameter (no ids / too many).

ParametersJSON Schema
NameRequiredDescriptionDefault
row_uuidsYes1–100 activity row ids to resolve in one batch.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
not_foundYes

TDQS

A4.9/5.0
Behavior5/5

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

Annotations only say readOnlyHint=true; description adds critical behavioral traits: partial success with not_found, data order not guaranteed, digest ids invalid, and error types. Adds significant value.

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?

Well-structured with clear sections: purpose, usage guidelines, caveats, errors. Every sentence earns its place, no redundancy.

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

Completeness5/5

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

With output schema present, description need not detail return values, but covers not_found and ordering. Includes error types and edge cases. Complete for tool complexity.

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

Parameters4/5

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

Schema covers row_uuids well (format, constraints). Description adds context: source from list_activities, prefers batch, and ids from digest not valid. Adds value beyond 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?

Clearly states it wraps GET /activity/items to return full payload for activity rows, and distinguishes from list_activities which is lean. Also mentions batch resolution and partial success.

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?

Explicitly says to use after list_activities, prefers batch over many single lookups due to rate limits, and advises that digest ids should go to get_digest. Also lists errors.

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

get_competitorGet competitorA
Read-only
Inspect

Wraps GET /competitors/{id}. Returns a single competitor's full profile plus the most recent items from each tracked section. Sections returned (with per-section item caps):

  • blog-posts (up to 3), press-posts (3), case-studies (3)

  • job-listings (5), ads (5), pricing (1), messaging (5)

  • metrics-claimed (5), logos (5)

  • linkedin-posts (3), x-posts (3), reviews (3), youtube-videos (3), events (3)

These are overview caps — for the full list in any section call list_activities with competitor_ids=[id] and the relevant section and NO from/to, which returns the complete all-time roster (paginated).

Chaining: Use after list_competitors — pass the id from a result row. For an activity timeline across sections, call list_activities with competitor_ids=[id] instead. Errors: not_found (no such competitor in this workspace), competitor_inactive (archived — reactivate in dashboard), forbidden_competitor (different workspace), unauthorized, rate_limited.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesCompetitor id from `list_competitors`.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes

TDQS

A4.7/5.0
Behavior5/5

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

Annotations indicate readOnlyHint; description adds caps per section, explains overview vs full list, and references list_activities for complete data. No contradiction.

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?

Well-structured with bullet points, clear separation of sections, chaining, and errors. Concise yet comprehensive; every sentence adds value.

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

Completeness5/5

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

Given the output schema exists, description details returned data (full profile + recent items per section with caps) and errors, making it complete.

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 already describes the single parameter 'id' as 'Competitor id from list_competitors.' Description does not add further detail, so baseline of 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?

Clearly states it returns a single competitor's full profile plus most recent items from each tracked section, listing specific sections. Distinguishes from siblings like list_competitors and list_activities.

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?

Explicitly says to use after list_competitors, pass the id. Also advises when to use list_activities instead for a full timeline. Includes error cases.

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

get_digestGet digestA
Read-only
Inspect

Wraps GET /digests/{id}. Returns a single digest's full payload — executive summary, themes, and update count for one competitor in one period.

Chaining: Use after list_digests or list_latest_digests — pass the id from a result row. Errors: not_found (digest not in this workspace), forbidden_competitor, unauthorized, rate_limited.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesDigest id from a `list_digests` or `list_latest_digests` row.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. Description adds value by specifying returned data fields and error types (not_found, forbidden_competitor, etc.), providing behavioral context beyond annotations.

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?

Three concise sentences: core action, chaining instruction, error list. No fluff, front-loaded with key purpose.

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

Completeness5/5

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

Given output schema exists, description covers purpose, usage, parameters, and errors sufficiently. Complete for a single-resource fetch tool.

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

Parameters5/5

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

Schema coverage is 100% with clear description for id parameter. The description reinforces parameter usage by specifying it comes from list digests results, adding chaining context.

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?

Description clearly states verb (returns), resource (digest), and content (executive summary, themes, update count). Distinguishes from sibling list tools by specifying single digest retrieval.

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?

Explicitly says to use after list_digests or list_latest_digests and pass the id. Lists common errors. Does not explicitly state when not to use or mention alternatives, but chaining context is clear.

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

list_activitiesList activitiesA
Read-only
Inspect

Wraps GET /activity. Two modes, selected by whether you pass a date window:

  • Roster (no from/to): the complete all-time catalog across the tracked competitors — including items that already existed when tracking began (the initial backfill). Use this to pull a full list, e.g. every customer a competitor has published a case study about: { competitor_ids: [id], sections: ['case-studies'] }. For versioned sections (job-listings, ads, logos, messaging, pricing) this is the current live snapshot, not removed history, so change_type is mostly added and total is the all-time count.

  • Change feed (with from/to): detected adds/updates/removals in that window only (excludes backfill) — the 'what shipped recently' surface.

Filters:

  • sections: restrict to specific section types (enum of 15: blog-posts, press-posts, job-listings, ads, pricing, case-studies, linkedin-posts, x-posts, reviews, youtube-videos, events, messaging, metrics-claimed, logos, sitemap-urls).

  • change_types: restrict to added / updated / removed (added / updated / removed).

  • competitor_ids: narrow to specific competitors.

  • from / to: ISO 8601 date-time window (inclusive). Supplying EITHER switches off roster mode; e.g. from=2026-04-16T00:00:00Z for the last 7 days.

Matching tip: for case studies the customer/company name is usually in title and/or the url slug (e.g. .../case-studies/whop) — match on both.

Pagination: response carries pagination.next_cursor, pagination.has_more, and pagination.total (total rows matching the filters, not just this page). If has_more, call again with the cursor param set to next_cursor. Default limit is 50 to stay under Claude's tool-result size limit; max is 500. The roster can be large — keep paging until has_more is false.

Heavy fields (description, key_points, pricing_data, excerpt) are omitted from list rows to keep them lean; fetch the full payload for rows you care about with get_activity_items (pass their ids). Chaining: get_activity_items returns full rows by id (one call for many ids). Errors: invalid_parameter (bad section/change_type/date), invalid_cursor (stale or tampered), unauthorized, rate_limited.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoInclusive upper bound, ISO 8601 with offset.
fromNoInclusive lower bound, ISO 8601 with offset (e.g. `2026-04-16T00:00:00Z`).
limitNoPage size. Default 50 (tool-result size limit); max 500. Prefer smaller pages and paginate.
cursorNoOpaque cursor from a previous response's `pagination.next_cursor`. Omit on the first call.
sectionsNoFilter to specific section types (e.g. `['pricing', 'blog-posts']`).
change_typesNoFilter to specific change types. `added` is usually the interesting one.
competitor_idsNoNarrow to these competitor ids. Omit for all tracked competitors.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
paginationYesShared cursor-pagination envelope.

TDQS

A4.6/5.0
Behavior5/5

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

Annotations declare `readOnlyHint: true`, and the description adds rich behavioral context: pagination behavior (cursor, limit, default 50), heavy fields omitted, and error types (invalid_parameter, invalid_cursor, unauthorized, rate_limited). No contradiction with annotations.

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?

Well-structured with headers, bullet points, and clear sections. Slightly verbose but each paragraph serves a purpose: modes, filters, pagination, and error handling. Could be tightened slightly, but no redundant sentences.

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

Completeness5/5

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

Given the complexity (two modes, pagination, heavy fields, error handling), the description is comprehensive. It explains return values like `pagination.next_cursor` and `has_more`, and references `get_activity_items` for full detail, leaving no critical gaps.

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

Parameters4/5

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

Schema coverage is 100% (all parameters documented). The description adds meaningful context beyond schema: explains that `from`/`to` switch to change feed, default `limit` is 50, and cursor usage. This aids agent in understanding parameter interplay.

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 it wraps `GET /activity` and explains the two modes (roster and change feed), with specific verbs (list, pull, fetch) and resource (activities). It distinguishes from siblings by referencing `get_activity_items` for heavy fields.

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?

Provides explicit guidance on when to use each mode (roster for full list, change feed for 'what shipped recently') and includes a matching tip. Does not explicitly exclude alternatives, but the sibling tools are differentiated implicitly, e.g., `get_activity_items` for fetching full payloads.

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

list_competitorsList competitorsA
Read-only
Inspect

Wraps GET /competitors. Lists every competitor in the authenticated workspace. Defaults to expand=full so the agent gets each competitor's social URLs (linkedin, twitter, …) and canonical page URLs (pricing, blog, …) in one call — no round-trip to get_competitor needed for that metadata.

Filters:

  • active: when true, only competitors still being tracked; when false, only archived ones.

  • ids: narrow to a specific subset (comma-joined upstream).

  • expand: full (default — profile + social + pages) or compact (id / name / website / category / active only).

Chaining: Discover competitor ids here, then pass them to get_competitor, list_activities (competitor_ids), or list_digests (competitor_id). Errors: unauthorized, rate_limited.

ParametersJSON Schema
NameRequiredDescriptionDefault
idsNoNarrow to this subset of competitor ids. Omit to return all.
activeNoFilter to active (true) or archived (false) competitors. Omit to return both.
expandNo`full` (default) adds social + pages metadata; `compact` returns id/name/website/category/active only.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. Description adds default expand=full behavior and error types (unauthorized, rate_limited), providing valuable context beyond annotations.

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?

Well-structured with headings and bullet points. Every sentence adds value; no fluff. Slightly longer than minimal but justified by useful detail.

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

Completeness5/5

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

Given output schema exists, description doesn't need to explain return values. Covers error types, chaining, filtering, and default behavior completely for a list tool.

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

Parameters4/5

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

Schema coverage is 100%, so parameters are well-documented. Description adds meaning: defaults for expand, filtering semantics for active (tracked vs archived), and ids as comma-joined upstream. Adds value beyond schema definitions.

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?

Description clearly states it wraps GET /competitors and lists every competitor in the workspace, with scope defined. It distinguishes from siblings like get_competitor (single) and list_activities (activities).

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?

Provides clear when-to-use context with filtering options and chaining to other tools (get_competitor, list_activities). Could explicitly state not to use for single competitor retrieval, but sibling differentiation is implicit.

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

list_digestsList digestsA
Read-only
Inspect

Wraps GET /digests. Returns cursor-paginated weekly digests (one per competitor per batch day) — the LLM-synthesized summaries. Unlike list_activities, pagination here has no total; use has_more / next_cursor only.

Filters: competitor_id (narrow to one competitor), from / to (ISO 8601 date-time window on period_start).

Chaining: For 'what happened last week across all competitors', prefer list_latest_digests — it's a one-shot. Use this when paging backward through history, or filtering to one competitor. Errors: invalid_parameter, invalid_cursor, unauthorized, rate_limited.

ParametersJSON Schema
NameRequiredDescriptionDefault
toNoInclusive upper bound on `period_start`, ISO 8601 with offset.
fromNoInclusive lower bound on `period_start`, ISO 8601 with offset.
limitNoPage size. Max 500. Smaller pages keep round-trips responsive and reduce tool-result truncation risk.
cursorNoOpaque cursor from a previous response's `pagination.next_cursor`. Omit on the first call.
competitor_idNoNarrow to one competitor's digests. Omit for all tracked competitors.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes
paginationYesShared cursor-pagination envelope.

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description discloses key behavioral traits: cursor pagination with no total (only has_more/next_cursor), and lists specific error types (invalid_parameter, invalid_cursor, unauthorized, rate_limited). No contradictions with annotations.

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 concise and well-structured: first sentence states core function, second paragraph lists filters, third provides chaining guidance and errors. No waste—every sentence earns its place.

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

Completeness5/5

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

With 5 parameters, no required fields, an output schema present, and sibling tools, the description covers pagination behavior, filtering, usage advice, and errors. It is fully adequate for an agent to select and invoke the tool correctly.

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

Parameters4/5

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

Schema coverage is 100% so the baseline is 3. The description adds value by clarifying that from/to are inclusive bounds on period_start and reminding that cursor is opaque from previous response. This extra context justifies a 4.

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 it wraps GET /digests and returns cursor-paginated weekly digests (LLM summaries). It distinguishes itself from list_activities (no total in pagination) and list_latest_digests (one-shot), making the tool's specific verb+resource and scope very clear.

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 explicitly tells when to use this tool ('when paging backward through history, or filtering to one competitor') and when to prefer list_latest_digests ('for 'what happened last week across all competitors''). This provides clear context and alternatives.

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

list_latest_digestsList latest digestsA
Read-only
Inspect

Wraps GET /digests/latest. No parameters. Returns the most recent digest per active competitor from the same batch day — a one-shot 'what happened this week across my tracked competitors'.

Chaining: One-shot entry point — no prior call needed. If the user wants older weeks or a specific competitor's history, use list_digests instead. Errors: unauthorized, rate_limited.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes

TDQS

A4.9/5.0
Behavior5/5

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

Discloses that it is a read-only operation (consistent with annotation), lists possible errors (`unauthorized`, `rate_limited`), and explains the output scope without contradicting any annotations.

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?

Three concise sentences with front-loaded information: API, no parameters, output description, chaining guidance, and errors. No wasted words.

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

Completeness5/5

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

Given zero parameters and an output schema, the description covers purpose, usage, errors, and chaining. It is fully self-contained 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.

Parameters4/5

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

No parameters exist, and schema coverage is 100%. The description adds value by explaining what the tool returns (most recent digest per active competitor), exceeding the baseline of 3 for zero-param tools.

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 it returns the most recent digest per active competitor, using a specific API endpoint. It distinguishes from sibling tool `list_digests` by explaining that this is a one-shot entry point for the current batch day.

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?

Explicitly states that no prior call is needed and advises to use `list_digests` for older weeks or specific competitor history, providing clear when-to-use and when-not-to-use guidance.

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

whoamiWho am I?A
Read-only
Inspect

Wraps GET /me. Confirms which workspace the agent is authenticated as and returns the current subscription, competitor budget, and rate-limit snapshot. auth_type reports how you authenticated: api_key callers also get the key block; oauth callers have no API-key record, so key is null — use auth_type/subject to confirm identity.

Chaining: Call first in a session to verify auth and workspace identity before any other tool. Errors: unauthorized (key is invalid or revoked — mint a new one), rate_limited (retry after X-RateLimit-Reset).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYes

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. Description adds behavioral details about auth_type behavior (api_key vs oauth), and returns subscription, budget, rate-limit. No contradictions. Goes beyond annotation by explaining when key is null.

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?

Description is concise with front-loaded main purpose, followed by useful details on auth types, chaining recommendation, and error handling. Every sentence adds value with no fluff.

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

Completeness5/5

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

Given zero parameters, readOnlyHint annotation, and available output schema, the description covers all necessary information: what it does, when to call, auth differentiation, errors. Fully complete for a simple identity tool.

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

Parameters4/5

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

No parameters, so baseline 4 applies. The schema has 0 parameters and 100% coverage, so description doesn't need to add param info. It correctly omits any parameter discussion as there are none.

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 it wraps 'GET /me' and returns workspace identity, subscription, competitor budget, and rate-limit snapshot. It distinguishes from sibling tools like list_competitors, get_competitor, etc., which have 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 Guidelines5/5

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

Explicitly says 'Call first in a session to verify auth and workspace identity before any other tool,' providing clear when-to-use guidance. Also explains error handling for unauthorized and rate-limited responses.

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. Dates show when Glama detected each change.

  1. 8 tool updatesv2.1.0
    • First observedget_activity_items
    • First observedget_competitor
    • First observedget_digest
    • First observedlist_activities
    • First observedlist_competitors
    • First observedlist_digests
    • First observedlist_latest_digests
    • First observedwhoami

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a unique purpose: auth, competitor listing/detail, activity listing/detail, digest listing/detail. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (list_competitors, get_competitor, list_activities, get_activity_items, list_digests, list_latest_digests, get_digest, whoami). The pattern is predictable and clear.

Tool Count5/5

8 tools is well-scoped for the domain of competitor intelligence and activity monitoring. Each tool fills a necessary role without redundancy or bloat.

Completeness4/5

Core reading operations (list, get) are covered for both activities and digests. Missing create/update/delete for competitors and digest generation, but the set covers common queries thoroughly.

Maintenance

ActivitySlowing
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/meertrack/meertrack-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server