Skip to main content
Glama
dennisonbertram

Rotki MCP Server

Counterparty Summary

counterparty_summary

Aggregate trading volume and transaction counts by counterparty, optionally filtering by time range and limiting to top N. Use it to identify key counterparties and analyze activity patterns.

Instructions

Get aggregated volume and counts by counterparty

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
top_nNoReturn top N counterparties (optional)
to_ts_msNoEnd timestamp in milliseconds (optional)
from_ts_msNoStart timestamp in milliseconds (optional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral disclosure burden, but it only states the operation and metric. It does not disclose aggregation defaults, time-range semantics, sorting, limits, or that this is a read-only aggregate rather than a transaction-level detail tool.

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 a single clear sentence that is front-loaded with the action and key output. It contains no fluff or redundant restatement of 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?

For a simple optional-parameter aggregate tool, the description is minimally adequate, but it leaves gaps: no default time window, no default top_n behavior, and no explicit statement of the return shape given that no output schema exists. Slightly more context would make it safe for an agent to call without assumptions.

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?

The input schema fully documents all three parameters at 100% coverage, so the baseline is 3 even though the description adds no parameter detail. The description does not help clarify top_n ordering or timestamp semantics, but the schema already handles parameter meaning.

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 uses a specific verb 'Get' and names the resource ('aggregated volume and counts by counterparty'), making the action and grouping clear. It is distinguishable from the sibling tools by the counterparty grouping, though it does not explicitly contrast itself with them.

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?

There is no guidance about when to use this tool instead of get_portfolio_overview, list_transactions, or the other siblings. No exclusions, prerequisites, or alternative conditions are stated, leaving the agent to infer the appropriate context.

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