Meertrack MCP
OfficialThis MCP server exposes Meertrack's REST API as 8 read‑only tools and 3 prompt workflows, letting you query competitor tracking data from any MCP‑compatible client.
Identity & workspace –
whoamireturns your workspace, subscription tier, and rate‑limit status.Competitors –
list_competitorslists all tracked competitors (with optional filters and expansion);get_competitorreturns a full profile plus the latest activity across blog, pricing, jobs, ads, and more.Activity feed –
list_activitiesretrieves the activity feed in two modes: roster (full catalog) or change feed (adds/updates/removals within a date window), filterable by section, change type, competitor, and paginated;get_activity_itemsbatch‑fetches full payloads for up to 100 activity IDs.Digests –
list_digestslists weekly LLM‑synthesized summaries (paginated, filterable);list_latest_digestsreturns the latest digest per active competitor in one call;get_digestretrieves a single digest in full.
Built‑in prompt workflows:
/weekly_recap– chainslist_latest_digestsinto a per‑competitor overview./competitor_deep_dive– drills into a named competitor’s recent activity (last 30 days)./whats_new– surfaces changes from the last N days (default 7), grouped by competitor.
Key constraints: All tools are read‑only; rate limit is 60 requests/minute; list responses use cursor‑based pagination (next_cursor).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Meertrack MCPWhat did my competitors ship this week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@meertrack/mcp
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 ( | Meertrack's Fly.io fleet ( |
Auth |
| OAuth 2.1 (browser flow, recommended) or |
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-Resetepoch so the agent can back off automatically.
Local install: recommended default
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, notmcpServers. 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, noturl. 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/mcpTwo 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-resourcefor clients that probe the root), perform Dynamic Client Registration athttps://meertrack.com/oauth/register, and drive the full PKCE-gated authorize → token flow. The user clicks "Connect", signs in atmeertrack.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/mcpMethod:
POSTHeaders:
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 |
| Confirms workspace + subscription + rate-limit snapshot. Call first. | |
Competitors |
| Defaults to | |
Competitors |
| Profile + recent items from each tracked section (blog, pricing, jobs, ads, …) with per-section caps. | |
Activity |
| Core "what shipped" feed. Default | |
Activity |
| Batch drill-in: full payloads for 1–100 row ids; unresolved ids returned in | |
Digests |
| Cursor-paginated weekly digests. No | |
Digests |
| No params; one-shot "what happened this week". | |
Digests |
| 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 |
none |
| |
|
| |
|
|
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 | What it means | Fix |
| Key is invalid, revoked, or expired | Mint a new key at Settings → API Keys and update the config |
| Competitor is archived in this workspace | Reactivate the competitor in the dashboard |
| The | Call |
| 60 req/min cap hit | Wait until the reset timestamp in the error message, or mint a second key for the other client |
| No such row in this workspace | The id is either wrong or belongs to a different workspace |
| 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 pinsengines.node.Remote URL returns 401 with
WWW-Authenticate: Bearer→ your bearer is missing, malformed, or doesn't start withmt_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
Authorizationheader.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
Privacy policy: https://meertrack.com/privacy
SECURITY.md: disclosure policy (
security@meertrack.com), in-scope surface.docs/PRIVACY.md: the MCP layer is stateless; bearers are forwarded per-request and nothing is persisted.
docs/ARCHITECTURE.md: request flow diagram.
docs/OBSERVABILITY.md: what gets logged, and how bearer tokens are redacted.
License
MIT.
Available Tools
8 toolsget_activity_itemsGet activity itemsARead-onlyInspect
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).
| Name | Required | Description | Default |
|---|---|---|---|
| row_uuids | Yes | 1–100 activity row ids to resolve in one batch. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | |
| not_found | Yes |
TDQS
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.
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.
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.
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.
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.
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 competitorARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Competitor id from `list_competitors`. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes |
TDQS
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.
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.
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.
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.
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.
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 digestARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Digest id from a `list_digests` or `list_latest_digests` row. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes |
TDQS
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.
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.
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.
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.
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.
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 activitiesARead-onlyInspect
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, sochange_typeis mostlyaddedandtotalis 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 toadded/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:00Zfor 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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Inclusive upper bound, ISO 8601 with offset. | |
| from | No | Inclusive lower bound, ISO 8601 with offset (e.g. `2026-04-16T00:00:00Z`). | |
| limit | No | Page size. Default 50 (tool-result size limit); max 500. Prefer smaller pages and paginate. | |
| cursor | No | Opaque cursor from a previous response's `pagination.next_cursor`. Omit on the first call. | |
| sections | No | Filter to specific section types (e.g. `['pricing', 'blog-posts']`). | |
| change_types | No | Filter to specific change types. `added` is usually the interesting one. | |
| competitor_ids | No | Narrow to these competitor ids. Omit for all tracked competitors. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | |
| pagination | Yes | Shared cursor-pagination envelope. |
TDQS
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.
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.
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.
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.
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.
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 competitorsARead-onlyInspect
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) orcompact(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.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Narrow to this subset of competitor ids. Omit to return all. | |
| active | No | Filter to active (true) or archived (false) competitors. Omit to return both. | |
| expand | No | `full` (default) adds social + pages metadata; `compact` returns id/name/website/category/active only. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes |
TDQS
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.
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.
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.
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.
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.
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 digestsARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Inclusive upper bound on `period_start`, ISO 8601 with offset. | |
| from | No | Inclusive lower bound on `period_start`, ISO 8601 with offset. | |
| limit | No | Page size. Max 500. Smaller pages keep round-trips responsive and reduce tool-result truncation risk. | |
| cursor | No | Opaque cursor from a previous response's `pagination.next_cursor`. Omit on the first call. | |
| competitor_id | No | Narrow to one competitor's digests. Omit for all tracked competitors. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | |
| pagination | Yes | Shared cursor-pagination envelope. |
TDQS
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.
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.
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.
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.
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.
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 digestsARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes |
TDQS
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.
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.
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.
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.
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.
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?ARead-onlyInspect
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).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes |
TDQS
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.
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.
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.
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.
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.
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.
8 tool updates
v2.1.0- First observed
get_activity_items - First observed
get_competitor - First observed
get_digest - First observed
list_activities - First observed
list_competitors - First observed
list_digests - First observed
list_latest_digests - First observed
whoami
TDQS
Each tool has a unique purpose: auth, competitor listing/detail, activity listing/detail, digest listing/detail. No overlap or ambiguity.
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.
8 tools is well-scoped for the domain of competitor intelligence and activity monitoring. Each tool fills a necessary role without redundancy or bloat.
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
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
MCP server for building and testing AI agents with multi-model experimentation and insights.
An MCP server that integrates with Discord to provide AI-powered features.
MCP server for AI access to Swagger by SmartBear.
MCP server for VC pitch-deck scoring, thesis-fit matching, and deal-flow management.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that enables AI tools to interact with ActiveCampaign API, allowing contact management and tracking event analysis through natural language queries.51MIT
- AlicenseCqualityAmaintenanceCompetitor Monitor AI - MCP server providing AI-powered tools and automation by MEOK AI Labs1116MIT
- AlicenseAqualityCmaintenanceAn MCP server that enables AI assistants to query databases, execute SQL, and manage Metabase resources like dashboards, cards, and collections through natural language.22MIT
- AlicenseAqualityFmaintenanceAn MCP server that gives AI agents eyes on any e-commerce storefront, enabling scraping, analysis, and comparison through the Model Context Protocol.1463MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/meertrack/meertrack-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server