Skip to main content
Glama

submit_commitment

Record an investor's intent-to-fund a project. Without terms it starts at 'soft_circled'; attach a terms object and it starts at 'term_sheet'. The founder still has to acknowledge — a commitment doesn't count as 'committed' (and doesn't show in the public round progress) until both sides have acked. (requires API key)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesProject slug.
notesNoFree-form note (max 4000 chars).
termsNoOptional structured terms, e.g. { cap: 8000000, discount: 0.20, mfn: true, valuation: 4000000, pro_rata: true }. Presence promotes initial status from soft_circled to term_sheet.
intro_idNoOptional intro UUID to link this commitment to an existing conversation.
amount_usdYesCommitment amount in USD (whole dollars).
instrumentNosafe

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explains the status progression (soft_circled or term_sheet based on terms), the need for mutual acknowledgment, and the visibility constraint (not shown in public round progress until both ack). It also notes the requirement for an API key. However, it does not cover error conditions or idempotency.

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 concise, consisting of two sentences that front-load the main action. Every sentence adds essential information without redundancy. It is well-structured and easy to parse.

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?

Given the complexity (6 parameters, nested object, no output schema, no annotations), the description is relatively complete. It covers the two possible initial statuses, the need for founder acknowledgment, and public visibility. However, it lacks information about the response format or error handling, which would be beneficial given the absence of an output schema.

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?

The schema description coverage is 83% (5 of 6 parameters documented). The description adds value beyond the schema by explaining how the 'terms' parameter affects the initial status and by noting the maximum length of 'notes' (4000 chars). The parameter descriptions in the schema are adequate, but the tool description enriches the meaning.

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 tool's purpose: 'Record an investor's intent-to-fund a project.' It uses a specific verb ('Record') and resource ('intent-to-fund'), and it distinguishes from sibling tools like acknowledge_commitment and list_commitments by focusing on the initial submission action.

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 provides clear context on when to use this tool (recording intent) and explains the two scenarios (with/without terms) that affect the initial status. It also clarifies that founder acknowledgment is required for full commitment. However, it does not explicitly state when not to use it or mention alternatives, though the sibling tool list provides implicit differentiation.

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

A4/5.0
Disambiguation5/5

Each tool targets a distinct action on a specific resource (commitments, intros, projects, watches) with no overlap. For example, list_projects vs search_projects differ by filtering, and list_watches vs watch_project are clearly separate.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case, e.g., acknowledge_commitment, list_projects, update_watch. The verbs are imperative and the nouns clearly indicate the resource.

Tool Count5/5

14 tools cover the core interactions of a fundraising platform—project discovery, pipeline management, intros, and commitments—without being bloated or insufficient.

Completeness4/5

The tool set covers the investor and founder journey well, but lacks project creation/update tools for founders, which is a minor gap given the server's focus on round interactions.