Skip to main content
Glama
desk3
by desk3

get_cycle_indicators

Analyze cryptocurrency market cycles with Bitcoin Ahr999 Index, Pi Cycle Top Indicator, Puell Multiple, and Bitcoin Rainbow Chart to identify potential market tops and trends.

Instructions

Get crypto market cycle top indicators with fields (Indicator/Current/24h%/ReferencePrice/Triggered). Provides comprehensive market cycle analysis including Bitcoin Ahr999 Index, Pi Cycle Top Indicator, Puell Multiple, Bitcoin Rainbow Chart, and more

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function that executes the tool logic by making an HTTP GET request to the external API endpoint for crypto market cycle top indicators and returns the data as a dictionary.
    async def get_cycle_indicators() -> dict[str, Any]:
        """
        Get crypto market cycle top indicators.
        :return: Market cycle indicators data with fields (Indicator/Current/24h%/ReferencePrice/Triggered)
        """
        url = 'https://mcp.desk3.io/v1/market/cycleIndicators'
        try:
            return request_api('get', url)
        except Exception as e:
            raise RuntimeError(f"Failed to fetch cycle indicators data: {e}")
  • The JSON schema definition for the tool in the list_tools handler, defining the tool name, description, and input schema (no required parameters).
    types.Tool(
        name="get_cycle_indicators",
        description="Get crypto market cycle top indicators with fields (Indicator/Current/24h%/ReferencePrice/Triggered). Provides comprehensive market cycle analysis including Bitcoin Ahr999 Index, Pi Cycle Top Indicator, Puell Multiple, Bitcoin Rainbow Chart, and more",
        inputSchema={
            "type": "object",
            "properties": {},
            "required": [],
        },
    ),
  • Registration and dispatch logic in the @server.call_tool handler, matching the tool name and invoking the get_cycle_indicators handler function to produce the tool response.
    case "get_cycle_indicators":
        try:
            data = await get_cycle_indicators()
            return [
                types.TextContent(
                    type="text",
                    text=json.dumps(data, indent=2),
                )
            ]
        except Exception as e:
            raise RuntimeError(f"Failed to fetch cycle indicators data: {e}")
Behavior2/5

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

With no annotations provided, the description carries full burden but offers minimal behavioral insight. It describes the output fields but doesn't disclose critical traits like whether this is a read-only operation, data freshness, rate limits, authentication needs, or error handling. The description adds some context about included indicators but lacks operational transparency.

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 efficiently structured in two sentences: first stating the core function and output fields, second elaborating on scope. Every phrase adds value without redundancy. It could be slightly more front-loaded by leading with 'comprehensive analysis' but remains highly concise.

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 zero parameters and no output schema, the description adequately explains what the tool returns (indicators with specific fields and examples). However, as a data-fetching tool with no annotations, it should ideally mention behavioral aspects like data sources or update frequency to be fully complete for agent use.

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?

The tool has 0 parameters with 100% schema coverage, so no parameter documentation is needed. The description appropriately doesn't discuss parameters, focusing instead on output content. This meets the baseline expectation for parameterless tools.

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 crypto market cycle top indicators' with specific fields listed. It distinguishes from siblings by focusing on comprehensive market cycle analysis rather than individual indicators like 'get_pi_cycle_top' or 'get_puell_multiple'. However, it doesn't explicitly contrast with 'get_cycles' which might overlap.

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 mentions 'comprehensive market cycle analysis' but doesn't specify scenarios where this aggregated view is preferred over individual indicator tools like 'get_pi_cycle_top' or broader tools like 'get_cycles'. No exclusions or prerequisites are stated.

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/desk3/cryptocurrency-mcp-server'

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