Skip to main content
Glama

Get intake state

get_intake_state
Read-onlyIdempotent

Get the current applicant intake state. Pass url, or session_id with access_token, on the hosted MCP endpoint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoSigned hosted intake URL. Include it in every call to the hosted MCP endpoint.
session_idNo
access_tokenNoApplicant access token. Use it with session_id instead of url.
api_base_urlNoOptional Klarefi deployment URL for local stdio use. The hosted MCP endpoint does not accept this override.

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds context about authentication methods and the hosted/local endpoint distinction, which is valuable beyond the structured annotations. No contradiction exists.

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 two sentences, front-loaded with the main purpose followed by essential usage details. Every word earns its place, with no redundancy.

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 absence of an output schema and the tool's simplicity, the description provides enough operational context: how to specify the target intake and the endpoint mode. It doesn't describe the return structure, but that's not required without an output schema and the read-only annotations cover side effects.

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 description coverage is 75% (three of four parameters have descriptions). The description clarifies that session_id must be used with access_token, and explains api_base_url's purpose for local stdio use, adding meaning not fully captured in the schema. However, session_id itself remains undocumented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('current applicant intake state'), making the tool's core function clear. It doesn't explicitly differentiate from siblings like 'open_intake' or 'get_case', but the resource and state focus distinguish it sufficiently.

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?

The description explains the two ways to call the tool (url or session_id with access_token) and notes the hosted MCP endpoint distinction from local stdio via api_base_url. However, it doesn't state when to prefer this tool over alternatives or mention any exclusion criteria.

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

Most tools have clearly distinct purposes, such as answer_fields vs answer_question or the various intake actions. However, get_case, get_case_package, and get_case_workspace all retrieve case-related information and could be confused, and create_connector vs create_connector_from_openapi are similar. Overall, descriptions help separate them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, such as create_, get_, list_, save_, submit_, upload_, and wait_. The naming is highly predictable and uniform across the set.

Tool Count4/5

With 20 tools, the server is slightly above the typical well-scoped range of 3-15 but still reasonable for a case-management platform covering intake, review, connectors, and workflows. Each tool serves a distinct function, though some consolidation could be possible.

Completeness4/5

The tool surface covers the main intake, case review, and connector lifecycle well. Minor gaps exist: there is no explicit tool to complete or reopen a case, and workflows cannot be published or activated after saving a draft. These are workable but notable omissions.

Resources