Skip to main content
Glama

get_ipo_social_sentiment

Get IPOSignal's X/Twitter social-sentiment reading for a specific IPO — an aggregate of how investors are discussing the stock on X, scored from -1 (bearish) to +1 (bullish) with a label, post tallies, and a one-line summary. Returns the aggregate signal only, not the underlying posts. Provide exactly one of companyId, symbol, or cik. Also available as a paid HTTP endpoint at /api/agent/social-sentiment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cikNo
symbolNo
companyIdNo

Schema Changelog

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

  1. Added

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries full disclosure burden. It reveals the output composition, the aggregate-only behavior, and the one-of parameter constraint. This is strong transparency for a read-only sentiment tool, though it omits rate limits or error behavior.

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 three focused sentences: first introduces the function and output, second clarifies the scope of returns, third states the parameter requirement and alternative endpoint. Every sentence earns its place without redundancy.

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?

In the absence of an output schema, the description adequately explains return values (score range, label, post tallies, summary). It also conveys the critical parameter constraint. It does not cover error handling or authentication, but these are less critical for a simple fetch operation.

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 0%, so the description's 'Provide exactly one of companyId, symbol, or cik' adds essential semantics beyond the bare schema. It clarifies that the three string parameters are alternative identifiers, even if it doesn't detail each parameter's format.

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: obtaining IPOSignal's X/Twitter social-sentiment reading for an IPO. It details the output metrics (score, label, tallies, summary) and explicitly notes it returns only the aggregate signal, not posts, which distinguishes it from sibling tools.

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 clear context for when to use the tool ('for a specific IPO') and instructs to 'Provide exactly one of companyId, symbol, or cik,' which is essential usage guidance. However, it does not explicitly mention alternatives or exclusion criteria relative to sibling tools like get_ipo_sentiment.

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

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct resource: general company metrics, market-wide IPO sentiment, a specific IPO's profile, and social sentiment for a specific IPO. No two tools overlap in purpose, and the descriptions clearly differentiate them.

Naming Consistency5/5

All tool names follow the get_<object>_<qualifier> pattern in snake_case, with 'get' as the uniform verb. This is fully consistent and predictable.

Tool Count5/5

Four tools is well-scoped for an IPO data server, covering the essential read-only operations without unnecessary bloat. Each tool provides meaningful, non-redundant functionality.

Completeness4/5

The set covers company metrics, market sentiment, IPO profile details, and social sentiment, which are core for IPO signals. However, there is no tool to list or search IPOs, forcing users to already know the identifier; this is a minor gap that agents can work around if identifiers are supplied.

Resources