commsharbor_crm_deals_create
create CRM deal.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | title | |
| currency | No | currency | |
| stage_id | Yes | stage id | |
| pipeline_id | Yes | pipeline id | |
| value_minor | No | value_minor | |
| organization_id | Yes | organization_id |
create CRM deal.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | title | |
| currency | No | currency | |
| stage_id | Yes | stage id | |
| pipeline_id | Yes | pipeline id | |
| value_minor | No | value_minor | |
| organization_id | Yes | organization_id |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only restates that the tool creates a deal and does not disclose whether valid pipeline/stage references are required, what side effects occur, whether the operation is idempotent, or what response the caller can expect.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence with no filler or structural waste. It is easy to parse, though the brevity borders on under-specification rather than effective conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With six parameters, four required, no annotations, and no output schema, the description is insufficiently complete. An agent cannot infer valid value sources, required relationships among the parameters, or what successful creation returns.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all six parameters. The description adds no further meaning about parameter relationships, value_minor units, currency format, or how organization_id, pipeline_id, and stage_id interact.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the action ('create') and the resource ('CRM deal'), making the core purpose clear. It distinguishes from sibling get/list/update/delete tools via the create verb, though it does not define the deal scope beyond the tool name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus alternatives such as crm_deals_update, crm_deals_list, or platform_crm_deals_create. There is also no mention of preconditions like needing an existing organization, pipeline, or stage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most resource CRUD sets are distinct, but the server duplicates entire CRM activity/task tool groups under crm_* and platform_crm_* with identical descriptions, so an agent cannot tell which set to call. Additional overlap exists around identity/context (me, context, platform_context, organizations) and exports (contacts_export vs data_export_create).
Names generally follow commsharbor_<resource>_<action>, but list endpoints are split between plural nouns (audiences, webhooks) and *_list suffixes (crm_activities_list), and some tools use bare nouns or verbs (health, me, context, logout). The mixed conventions are readable but not fully predictable.
141 tools is far beyond a coherent surface for an agent to select from. Even with a broad CRM/email platform scope, the set should be consolidated, namespaced more aggressively, or split into multiple focused servers.
Coverage is broad: campaigns, templates, audiences, CRM objects, imports/exports, auth, billing, domains, webhooks, and suppressions all have lifecycle tools. Gaps like suppression deletion, webhook update, and a non-platform leads group are minor relative to the overall surface, though the duplicate platform sets muddy completeness.