Skip to main content
Glama
FastSocialCo

instagram-data-mcp

by FastSocialCo

instagram_highlights

Read-only

Retrieve Instagram story highlights for a user, including title, cover image, and item count. Use the highlight ID to fetch individual items.

Instructions

Get Instagram story highlights. Title, cover image and item count for each highlight. Pass an id to /v1/highlight for its items.

Cost: 3 credits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idNoNumeric Instagram user id. Pass this or username.
usernameNoInstagram handle, with or without @. A profile URL also works. Pass this or user_id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already establish readOnlyHint and openWorldHint, so the safety profile is covered. The description still adds non-obvious traits: the exact returned fields and the 3-credit cost, which is decision-relevant for an agent budgeting calls.

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 short sentences, front-loaded with what the tool returns, then the routing hint, then the cost. No filler or repetition of the title.

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?

With no output schema, the description correctly compensates by naming the returned fields, and it covers cost and the follow-up call. It is close to complete; the only gap is not stating whether user_id or username is required for a successful call.

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% and both parameters already document the user_id-or-username alternative, so the baseline is 3. The description adds meaning by tying an 'id' to the highlight-items flow, clarifying an identifier concept the schema does not surface.

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?

States a specific verb and resource ('Get Instagram story highlights') and describes the payload fields returned (title, cover image, item count). It is distinguishable from the near-named sibling instagram_highlight, which it explicitly routes to for item-level data.

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?

It tells the agent the follow-up path ('Pass an id to /v1/highlight for its items'), which is genuine routing guidance to a sibling. It does not, however, say when to prefer this over instagram_stories or whether a user_id/username is mandatory, so the when-to-use context is clear but incomplete.

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