Skip to main content
Glama
iadevhub
by iadevhub

get_project_info

Retrieve current project details including name, slug, plan, and status for iadev projects to support AI-driven database and user management.

Instructions

Informações do projeto atual (nome, slug, plano, status).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden, but it does add that the tool targets the 'current project' — implying session/context dependency rather than an ID argument. It still omits auth requirements, error behavior when no project is active, or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single short sentence with the resource front-loaded and no waste. It is appropriately sized, though the parenthetical field list is the only informative addition.

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

Completeness3/5

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

For a zero-parameter, no-output-schema tool, the description covers the essentials of what is returned. However, with no annotations and no output schema, it could do more to explain session dependency and failure behavior when no current project is set.

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?

There are zero parameters, so the baseline of 4 applies. The description usefully enumerates the conceptual fields returned (name, slug, plan, status), though these are outputs rather than parameters.

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?

States clearly that it returns information about the current project and enumerates the fields (name, slug, plan, status). It distinguishes itself from siblings like list_my_projects or create_project by scoping to the current project, though the retrieval verb is implied rather than stated.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives such as list_my_projects, get_service_token, or other project tools. The 'current project' scope hints at session-based usage but there are no explicit conditions or exclusions.

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