Skip to main content
Glama

Log Deal Activity

log_deal_activity

Log an activity on a deal (or lead) — a note/call/meeting/email, or a follow-up task with a due date. Pass deal_id and/or lead_id (each must be owned by the caller). type defaults to 'note'; for a task set type='task' and a due_date (YYYY-MM-DD). Tasks appear in list_sales_tasks.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
doneNoMark a task already done.
typeNonote|call|meeting|email|task (default note).
deal_idNoOwned deal to attach to.
lead_idNoOwned lead to attach to.
subjectNo
due_dateNoISO date YYYY-MM-DD (for tasks).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations (all false) provide no behavioral info, so the description carries full burden. It discloses that the tool creates a log entry (write operation), requires ownership of deal_id/lead_id, and tasks become visible in 'list_sales_tasks'. It does not describe error handling or side effects beyond that, but the core behavior is transparent.

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 sentences, each serving a distinct purpose: stating the action, detailing required inputs and defaults, and providing task-specific instructions with a sibling reference. No redundant or extraneous information.

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

Completeness5/5

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

Given the presence of an output schema (covering return values) and sufficient annotations, the description provides all necessary context: what the tool does, how to use parameters, ownership constraints, and the relationship to 'list_sales_tasks'. It is complete for an activity logging tool.

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 71% (5 of 7 params described). The description adds value beyond the schema by specifying ownership constraints for deal_id/lead_id, the default value for type, and the format requirement for due_date. It does not clarify body or subject parameters, but the schema's lack of description for these is partially offset by the overall clarity.

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 verb 'Log an activity on a deal (or lead)' and specifies the resource (deal/lead) and types of activities (note/call/meeting/email/task). It distinguishes from sibling tools like 'complete_sales_task' by mentioning tasks appear in 'list_sales_tasks', implying this tool logs new activities rather than completing or listing them.

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 explains when to use: to log an activity on a deal/lead. It provides guidance on IDs (must be owned by caller) and defaults ('type' defaults to 'note'). For tasks, it instructs to set type='task' and provide due_date. It does not explicitly state when not to use or point to alternatives like 'complete_sales_task', but the context is clear enough.

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

A3.6/5.0
Disambiguation5/5

Every tool targets a distinct resource and action, with detailed descriptions that clearly separate overlapping domains (e.g., consulting vs. marketing vs. outreach). Even within the same domain, tools like 'create_consulting_deliverable' and 'create_consulting_document_revision' are unambiguous due to their specific nouns.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (e.g., 'create_invoice', 'get_deal', 'list_agents'). The few exceptions like 'locus_determine_from_scores' still adhere to the verb_noun structure and do not break the pattern.

Tool Count1/5

With 124 tools, the server is massively over-scoped for typical MCP use. The tool count far exceeds the '50+ extreme mismatch' threshold, making it nearly impossible for an agent to efficiently navigate or select the right tool without extensive context. Even a large platform should consolidate or expose fewer tools.

Completeness5/5

The tool surface covers CRUD and lifecycle operations across at least 10 domains (sales, consulting, marketing, outreach, accounting, workflows, ticketing, API keys, feedback, platform metrics). Each domain appears to have no obvious gaps—e.g., invoicing includes create, update, send, mark paid, void; ticketing includes create, update, archive, dependencies, batch, scenarios, validation.

Resources