Skip to main content
Glama
jackleeio

bnbot-mcp-server

by jackleeio

scrape_timeline

Extract tweets from a Twitter/X timeline, including text, author, metrics, and URLs. Navigate to the timeline first if needed.

Instructions

Scrape tweets from the Twitter/X timeline. Returns tweet text, author, metrics, and URLs. Navigate to the timeline first if not already there.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of tweets to collect
scrollAttemptsNoNumber of scroll attempts to load more tweets

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description must carry the full behavioral burden. It discloses that navigation to the timeline may be required, which is useful. But it does not mention permissions, rate limits, side effects, or scrolling/pagination behavior beyond the schema parameters.

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?

Two short sentences, front-loaded with the core action, followed by return contents and a prerequisite. Every sentence earns its place.

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

Completeness4/5

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

For a two-parameter scraping tool with complete schema coverage and no output schema, the description covers purpose, returns, and one prerequisite. It is adequate overall, though it could better distinguish usage from similar scrape siblings.

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

Parameters3/5

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

The schema already documents both parameters with 100% description coverage, including defaults and meanings. The description adds no parameter-specific details, so baseline 3 is appropriate.

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

Purpose5/5

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

The description states a specific verb and resource: 'Scrape tweets from the Twitter/X timeline.' It also lists the return contents, clearly distinguishing it from siblings such as scrape_search_results, scrape_bookmarks, and scrape_thread.

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

Usage Guidelines3/5

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

It gives one usage condition: 'Navigate to the timeline first if not already there.' However, it does not explain when to choose this tool over scrape_current_view or other scrape tools, nor when not to use it.

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