Skip to main content
Glama

Server Details

Search Hacker News, Bluesky, and Substack from a single MCP interface

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
MarcinDudekDev/the-data-collector
GitHub Stars
0
Server Listing
the-data-collector

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 5 of 5 tools scored. Lowest: 3.4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, distinct purpose: searching three different platforms (Bluesky, Hacker News, Substack) and the scraper pair (list vs. run) are obviously separable. There is no ambiguity between the tools.

Naming Consistency4/5

Tool names use consistent snake_case and are readable, but there is a minor mix: three are [platform]_search (noun_verb) and two are verb_noun (list_scrapers, run_scraper). This is a slight deviation but the pattern is still predictable.

Tool Count5/5

Five tools is well-scoped for a data collection server: three search tools cover distinct platforms, and the scraper management pair provides a complete workflow. Nothing feels redundant or excessive.

Completeness4/5

The core search and scraper lifecycle (discover + run) is covered. Minor gaps exist, such as no way to manage past scraper runs or retrieve datasets from previous executions, but these are workable and the main purpose is fulfilled.

Available Tools

5 tools
list_scrapersAInspect

List the Web Data Labs scraper catalogue on the Apify Store -- 50+ maintained scrapers (LinkedIn jobs, Twitter/X, Amazon, Google Maps, Shopify, YouTube, Instagram, Reddit and more) with what each does, its per-result price and its Store URL. Free, no token required. Call this first to find the right actor, then run it with run_scraper.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNoOptional filter, e.g. 'linkedin' or 'jobs'
Behavior4/5

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

No annotations are present, so the description carries the transparency burden. It successfully discloses that the operation is free, requires no token, and returns per-result price and Store URL. While it doesn't explicitly say 'read-only', the verb 'List' implies a non-mutating operation, and the description adds meaningful behavioral context beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the core purpose and immediately provides scope, contents, pricing, and workflow. Every clause adds value, with no filler.

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?

Despite no output schema, the description specifies exactly what the returned catalogue includes (what each scraper does, per-result price, Store URL). It also covers auth requirements, cost, and a clear next step, making it sufficiently complete for a list/discovery tool with simple optional parameters.

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

Parameters2/5

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

Schema description coverage is only 50%: 'query' is explained, but 'limit' is not. The description does not compensate by explaining either parameter, leaving the limit parameter's behavior and default uncertain. This is a clear gap in parameter semantics.

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 ('List') and resource ('Web Data Labs scraper catalogue on the Apify Store') with concrete details about contents (50+ scrapers, pricing, URLs). It clearly distinguishes this discovery tool from its sibling 'run_scraper' by framing the workflow.

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?

Explicit guidance is provided: 'Call this first to find the right actor, then run it with run_scraper.' This tells the agent when to use the tool and what to do after, making the intended workflow unambiguous relative to siblings.

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

run_scraperAInspect

Run a Web Data Labs scraper on the Apify platform and return the dataset items. IMPORTANT: this runs on YOUR OWN Apify account using the apifyToken you pass -- the data and the billing are yours, and we never run it on our account. Get a free token at https://console.apify.com/settings/integrations. Use list_scrapers first to find the actor name and its input fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
actorYesActor name, e.g. 'cryptosignals/linkedin-jobs-scraper'
inputNoActor input object (see the actor's Store page for its schema)
maxItemsNoMax dataset items (1-200)
apifyTokenYesYOUR Apify API token. Required. Never ours.
Behavior4/5

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

With no annotations, the description carries full responsibility for disclosing side effects. It explicitly states: 'this runs on YOUR OWN Apify account using the apifyToken you pass -- the data and the billing are yours, and we never run it on our account.' This is a critical behavioral trait beyond the schema. However, it omits details about error handling, rate limits, or output structure, which prevents a higher score.

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 four sentences, each earning its place: purpose, account/billing warning, token acquisition link, and prerequisite step. It is front-loaded with the primary verb and resource, with no fluff or repetition of schema details.

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?

Despite lacking an output schema and having a nested input object, the description covers the key workflow: finding the actor via list_scrapers, providing the token, and understanding billing implications. It doesn't explain what happens with maxItems or error cases, but the schema covers maxItems and the description directs users to the actor's Store page for input schema. Overall, it is sufficiently complete for an agent to invoke correctly.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds minimal parameter meaning beyond the schema, such as implying the actor name comes from list_scrapers, but the schema already describes each parameter. No extra semantic detail is provided for input or maxItems, so the score remains at the baseline.

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

Purpose5/5

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

The description clearly states the tool's function: 'Run a Web Data Labs scraper on the Apify platform and return the dataset items.' It specifies the verb (run), resource (scraper), platform (Apify), and output (dataset items). It also distinguishes itself from sibling tools by directing users to list_scrapers first, establishing a complementary relationship.

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

Usage Guidelines4/5

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

The description provides explicit usage context: 'Use list_scrapers first to find the actor name and its input fields.' It also warns that execution happens on the user's own Apify account, which is important for when to use (or avoid) the tool. While it doesn't explicitly mention alternatives to exclude, the guidance is clear and actionable.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.