Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_sentiment_analysis

Analyze crypto sentiment by processing social media and news sources to identify market trends and narratives.

Instructions

Get AI-powered sentiment analysis for crypto topics.

Args: query: Topic to analyze (token name, project, or keyword) sources: List of sources. Options: twitter, reddit, news, telegram

Returns: Sentiment score, volume trends, and key narratives.

Price: $0.30

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes
sourcesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The implementation of the get_sentiment_analysis tool, which calls the 'sentiment-analysis' service via a helper function.
    async def get_sentiment_analysis(query: str, sources: List[str] = None) -> str:
        """
        Get AI-powered sentiment analysis for crypto topics.
        
        Args:
            query: Topic to analyze (token name, project, or keyword)
            sources: List of sources. Options: twitter, reddit, news, telegram
        
        Returns:
            Sentiment score, volume trends, and key narratives.
        
        Price: $0.30
        """
        payload = {
            "query": query,
            "sources": sources or ["twitter", "reddit", "news"]
        }
        result = await call_coinrailz_service("sentiment-analysis", payload)
        return json.dumps(result, indent=2)
Behavior2/5

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

No annotations are provided, so the description carries full burden. It mentions 'Price: $0.30' which is useful cost context, but lacks other behavioral details like rate limits, authentication needs, data freshness, or error handling. The description doesn't contradict annotations (none exist), but it's insufficient for a mutation-like tool (though sentiment analysis is likely read-only).

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

Conciseness4/5

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

The description is well-structured with clear sections (Args, Returns, Price) and uses bullet-like formatting. It's relatively concise at 5 lines, though the 'Price' line could be integrated more smoothly. Most sentences earn their place by adding value beyond the tool name.

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

Completeness3/5

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

Given no annotations, 0% schema coverage, but an output schema exists (implied by 'Has output schema: true'), the description is moderately complete. It covers basic purpose, parameters, returns, and cost, but lacks behavioral context and usage guidance. The output schema reduces need to explain return values, but more operational details would help.

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 0%, so the schema provides no parameter descriptions. The description adds some semantics: it explains 'query' as 'Topic to analyze (token name, project, or keyword)' and 'sources' as 'List of sources. Options: twitter, reddit, news, telegram'. This clarifies purpose and options, but doesn't fully compensate for the coverage gap (e.g., no details on source combinations or query formatting).

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's purpose: 'Get AI-powered sentiment analysis for crypto topics.' It specifies the action (get sentiment analysis) and resource (crypto topics). However, it doesn't explicitly differentiate from sibling tools like 'get_token_sentiment' or 'get_stock_sentiment' beyond mentioning 'crypto topics'.

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. It doesn't mention sibling tools like 'get_token_sentiment' or 'get_stock_sentiment' that might be related, nor does it specify prerequisites, constraints, or typical use cases beyond the basic function.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tdnupe3/mcp-server-coinrailz'

If you have feedback or need assistance with the MCP directory API, please join our Discord server