Skip to main content
Glama

Recent Changes

recent_changes
Read-onlyIdempotent

"What's new with X" / "latest on Y" / "what happened to Z this week / month / quarter" / "updates on Acme" / "news on Tesla recently" / "what's happening with Apple" — change feed for a company in the last N days/weeks/months in ONE parallel call. Fans out to SEC EDGAR (filings since since), GDELT→GNews fallback (news mentions in window — GDELT preferred, GNews when rate-limited or 5xx), USPTO (patents granted; PatentsView API sunset May 2025 so this soft-fails until reactivated). since accepts ISO date ("2026-04-01") or relative shorthand ("7d", "30d", "3m", "1y"). Returns structured changes[] grouped by source + total_changes count + pipeworx:// citation URIs. Use entity_profile instead when you want the static profile (filings + fundamentals + LEI + patents) regardless of window.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesEntity type. Only "company" supported today.
sinceYesWindow start — ISO date ("2026-04-01") or relative ("7d", "30d", "3m", "1y"). Use "30d" or "1m" for typical monitoring.
valueYesTicker (e.g., "AAPL") or zero-padded CIK (e.g., "0000320193").

Schema Changelog

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

  1. First observed

TDQS

A5/5.0
Behavior5/5

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

Beyond the readOnly/openWorld/idempotent annotations, the description discloses the fan-out architecture across three sources, the GDELT→GNews fallback trigger, the PatentsView API sunset causing soft-failure, and the return structure (changes[] grouped by source, total_changes, pipeworx:// citation URIs). This is rich behavioral context that annotations alone do not convey.

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 dense but every sentence earns its place: it fronts with use cases, then explains the fan-out and fallbacks, date formats, return contract, and finally points to an alternative. No filler or repetition; the structure naturally guides the agent from intent to invocation.

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?

Given the tool's complexity (multi-source fan-out, fallback logic, soft-fail conditions, date parsing) and the absence of an output schema, the description covers all necessary behavioral and result details: sources, fallback triggers, soft-fail rationale, return shape (changes[], total_changes), and citation URIs. It also notes the parallel-call efficiency, making it complete for safe selection and invocation.

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

Parameters5/5

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

Although schema coverage is 100%, the description adds substantial parameter semantics: 'since' accepts ISO date or relative shorthand with examples ("7d", "3m") and a recommendation ("30d" or "1m"); 'value' is clarified with ticker or CIK examples; 'type' enum is explicitly narrowed to "company". These practical details go well beyond the schema definitions.

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 opens with concrete user intents ("What's new with X", "latest on Y") then states it is a "change feed for a company in the last N days/weeks/months in ONE parallel call." It names the specific sources (SEC EDGAR, GDELT→GNews, USPTO) and clearly distinguishes itself from the sibling tool entity_profile, making its purpose unambiguous.

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?

The description provides explicit when-to-use guidance with example queries and states that entity_profile should be used instead when a static profile is needed. It also explains fallback behavior (GDELT preferred, GNews when rate-limited, USPTO soft-fails) which informs the agent's decision-making.

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

Several tools overlap heavily: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research all route questions to the same underlying data catalog, and the polymarket_* tools have closely related edge/arbitrage/fill-risk purposes. The descriptions are detailed, but an agent still faces real selection risk between near-duplicate query entry points.

Naming Consistency3/5

The set is consistently snake_case but otherwise mixes conventions: n8n_ and polymarket_ prefixes, bare verbs like remember/forget/recall, noun phrases like recent_alerts, and brand-style names like ask_pipeworx. It is readable but lacks a unified naming system across the server.

Tool Count2/5

34 tools is a heavy surface, especially for a server named N8n where only 3 tools actually relate to n8n workflow management. Most tools serve Pipeworx data lookup, prediction markets, memory, and subscriptions, making the server feel like several different products merged into one.

Completeness3/5

The data research, entity resolution, memory, and subscription surfaces are well covered, including useful meta-tools for discovery and grounding. However, the n8n portion is read-only with no create/update/delete/run workflow tools, and one-off utilities like generate_llms_txt and scan_dependency sit isolated, leaving the server's overall domain incomplete.