Skip to main content
Glama
AswaniSahoo

splitsmart-mcp

by AswaniSahoo

create_group

Create a group by specifying a name and unique member names, enabling expense tracking and fair debt settlement.

Instructions

Create a group with a name and a list of unique member names.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
membersYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral disclosure. It clearly signals a mutating create operation and adds the useful constraint that member names must be unique, but it does not say what happens with duplicate member names, name conflicts, or whether creation is idempotent.

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?

A single, front-loaded sentence that states the action and both parameters with no filler or repetition.

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

Completeness4/5

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

The tool is simple (two flat parameters) and an output schema exists, so the description does not need to document return values. It covers the operation and both inputs; only edge-case behavior is left unspecified.

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 schema has no property descriptions, so the text must compensate. It maps 'name' to the group name and 'members' to a list of member names, and adds a uniqueness constraint not present in the schema, but it otherwise mirrors the basic schema structure without deeper validation or formatting details.

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 opens with the specific verb 'Create' and the resource 'group', then names both required inputs. This clearly distinguishes it from sibling tools like get_group and add_member.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Use is implied: call this when you need to instantiate a new group. It does not explicitly state when not to use it or mention alternatives, though the sibling list makes the distinction inferable.

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