Skip to main content
Glama

get_dashboard

View comprehensive account analytics including products, agents, and lead counts to monitor outreach performance across multiple platforms.

Instructions

Get an overview of all products, agents, and lead counts across the entire Swarmix account

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The MCP tool handler for 'get_dashboard', which invokes the client's dashboard and agent list methods.
      name: 'get_dashboard',
      description:
        'Get an overview of all products, agents, and lead counts across the entire Swarmix account',
      inputSchema: { type: 'object' as const, properties: {} },
      handler: async () => {
        const [summary, agents] = await Promise.all([
          client.getDashboard(),
          client.listAgents(),
        ]);
        return JSON.stringify({ summary, agents }, null, 2);
      },
    },
  • The underlying API client method that fetches data for the dashboard.
    async getDashboard() {
      return this.request('GET', '/api/leads/summary');
    }
Behavior2/5

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

Annotations are absent, so the description carries full burden. While 'Get' implies a read operation, the description discloses no behavioral traits regarding data freshness (real-time vs cached), permission requirements, performance characteristics for large accounts, or what the overview structure contains beyond the three mentioned entities.

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?

Single sentence, front-loaded with action verb and scope. No redundancy or filler. Every word contributes to understanding the tool's scope and target resources.

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?

Adequate for a parameter-less read operation, but gaps remain given the lack of output schema or annotations. Description omits return value structure, whether archived items are included, and how this aggregate view relates to the more specific sibling query tools.

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?

Input schema contains zero parameters. Per evaluation rules, zero parameters establish a baseline score of 4. The description does not need to compensate for missing parameter documentation.

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?

Clear verb ('Get') and resource ('overview of all products, agents, and lead counts'). The scope 'across the entire Swarmix account' implicitly distinguishes this from sibling tools like get_agent_stats (likely per-agent) and list_agents, though explicit contrast with alternatives is not provided.

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?

No guidance on when to use this versus sibling tools like get_activity, get_agent_stats, or get_funnel. No mention of prerequisites or conditions where this overview is most valuable.

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/diegotorreslopez81/swarmix-mcp'

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