Skip to main content
Glama

GVRN Incorporation

Submit incorporation request

submit_incorporation
Destructive

Submits a draft for review by the GVRN team and returns the request status. Requires a verificationToken for the email that created the draft, which becomes the contact for the request. Optional fields may be left blank. Irreversible: the draft becomes read-only and a review request is filed with the GVRN team.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
draftIdYesDraft id returned by create_incorporation_draft
verificationTokenYesToken from verify_email_otp

TDQS

A4.6/5.0
Behavior5/5

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

The annotations mark this as destructive, and the description goes further by specifying the consequences: the draft becomes read-only, the contact email is fixed, and a review request is filed. This adds meaningful behavioral context beyond the structured annotations.

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?

Four short sentences, each carrying distinct information: action/return value, prerequisite, optional-field behavior, and irreversibility. It is front-loaded with the primary purpose and contains no redundant filler.

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 definition covers prerequisites, side effects, and return behavior ('returns the request status'). It is adequate for a two-parameter tool, though it could further specify possible status values or guidance on later checking status via the sibling status 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 100%, so the schema already documents both required parameters. The description adds value by explaining the role of verificationToken (email that created the draft becomes the contact) and noting that optional fields may be blank, which clarifies submission requirements beyond raw parameter names.

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?

States the exact action ('Submits a draft for review'), the target resource ('a draft'), the receiving party ('GVRN team'), and the observable outcome ('returns the request status'). The term 'submits' clearly separates it from create/update/status sibling tools.

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?

Gives clear prerequisites: a verificationToken tied to the email that created the draft. The irreversibility warning effectively tells the agent when not to call it, though it does not explicitly name alternative tools or enumerate when to prefer them.

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.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: OTP flow, draft CRUD (create/update/submit), status retrieval, and a guide. No two tools overlap in functionality.

Naming Consistency5/5

All tools use snake_case with a consistent verb_noun pattern, and the 'incorporation' prefix is used for domain-specific tools, while OTP tools have their own consistent naming.

Tool Count5/5

7 tools is an appropriate scope for an incorporation workflow, covering OTP verification, draft management, submission, and status tracking without being excessive.

Completeness4/5

The set covers the full lifecycle (create, update, submit, status, guide) and email verification. Missing a delete/cancel draft or list drafts tool, but these are minor gaps.

Resources