Skip to main content
Glama

Get Newest

get_newest
Read-onlyIdempotent

Get latest stories posted to Lobsters. Returns title, URL, publication time, score, and tags for each story.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoNumber of stories returned
storiesNoList of newest stories

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changed
    • changedOutput schema / properties / stories / items / properties / description / type
      Previous value: -[
      -  "string",
      -  "null"
      -]New value: +"string"
    • removedOutput schema / properties / stories / items / properties / downvotes
      Removed value: -{
      -  "description": "Number of downvotes",
      -  "type": "number"
      -}
    • removedOutput schema / properties / stories / items / properties / submitter
      Removed value: -{
      -  "description": "Username of story submitter",
      -  "type": "string"
      -}
    • removedOutput schema / properties / stories / items / properties / upvotes
      Removed value: -{
      -  "description": "Number of upvotes",
      -  "type": "number"
      -}
    • removedOutput schema / properties / stories / items / required
      Removed value: -[
      -  "short_id",
      -  "url",
      -  "comments_url",
      -  "title",
      -  "score",
      -  "upvotes",
      -  "downvotes",
      -  "comment_count",
      -  "created_at",
      -  "submitter",
      -  "tags",
      -  "description"
      -]
    • removedOutput schema / required
      Removed value: -[
      -  "count",
      -  "stories"
      -]
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "count": {
      +      "description": "Number of stories returned",
      +      "type": "number"
      +    },
      +    "stories": {
      +      "description": "List of newest stories",
      +      "items": {
      +        "properties": {
      +          "comment_count": {
      +            "description": "Number of comments",
      +            "type": "number"
      +          },
      +          "comments_url": {
      +            "description": "URL to view comments on Lobsters",
      +            "type": "string"
      +          },
      +          "created_at": {
      +            "description": "ISO timestamp of story creation",
      +            "type": "string"
      +          },
      +          "description": {
      +            "description": "Plain text description or null",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "downvotes": {
      +            "description": "Number of downvotes",
      +            "type": "number"
      +          },
      +          "score": {
      +            "description": "Total score (upvotes - downvotes)",
      +            "type": "number"
      +          },
      +          "short_id": {
      +            "description": "Unique short ID for the story",
      +            "type": "string"
      +          },
      +          "submitter": {
      +            "description": "Username of story submitter",
      +            "type": "string"
      +          },
      +          "tags": {
      +            "description": "Tags associated with the story",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "title": {
      +            "description": "Story title",
      +            "type": "string"
      +          },
      +          "upvotes": {
      +            "description": "Number of upvotes",
      +            "type": "number"
      +          },
      +          "url": {
      +            "description": "Story URL",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "short_id",
      +          "url",
      +          "comments_url",
      +          "title",
      +          "score",
      +          "upvotes",
      +          "downvotes",
      +          "comment_count",
      +          "created_at",
      +          "submitter",
      +          "tags",
      +          "description"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "count",
      +    "stories"
      +  ],
      +  "type": "object"
      +}
  3. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {}
      +]
  4. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, so the description adds minimal behavioral context. It confirms the tool returns specific fields but does not disclose potential rate limits or other traits beyond what annotations indicate.

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 two concise sentences, front-loaded with the core purpose, and contains no extraneous information. 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?

For a simple parameterless tool with an output schema, the description is complete. It specifies the source and return fields, which is sufficient for an agent to understand usage.

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?

There are no parameters, and schema description coverage is 100%, so the description does not need to add parameter details. It adds no extra meaning beyond the schema, which is adequate for a parameterless tool.

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

Purpose4/5

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

The description clearly states the tool retrieves the latest stories from Lobsters and specifies the return fields (title, URL, publication time, score, tags). It is specific and distinct from siblings like get_story, though it does not explicitly contrast with get_hottest.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as get_hottest or other story-related tools. No usage context or exclusions are given.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation2/5

Many tools have overlapping purposes, e.g., three tools for querying Pipeworx data (ask_pipeworx, ask_pipeworx_grounded, deep_research), and six tools for Polymarket prediction markets. The boundaries between them are unclear, causing potential for misselection.

Naming Consistency3/5

Tool names are all snake_case but follow inconsistent patterns: some use verb_noun (get_hottest, get_newest), some are single verbs (remember, forget), and others are noun_noun (bet_research, polymarket_arbitrage). While readable, the lack of a consistent pattern adds confusion.

Tool Count2/5

With 34 tools, the server is overloaded, especially given its name 'Lobsters' suggests a focus on that site, yet only 4 tools are Lobsters-related. The majority belong to Pipeworx, Polymarket, and generic utilities, making the scope extremely broad and unfocused.

Completeness2/5

For the implied domain of Lobsters, the tool set is incomplete (missing create/update/delete). For the broader domains (Pipeworx, Polymarket), the set is extensive but doesn't align with the server's name. The lack of a coherent domain leaves obvious gaps relative to any single purpose.