get_project_details
Get detailed information about a specific project in the session
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | The anonymous session ID | |
| project_slug | Yes | The slug of the project to get details for |
Get detailed information about a specific project in the session
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | The anonymous session ID | |
| project_slug | Yes | The slug of the project to get details for |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden for behavioral disclosure. It states 'Get' (implying read-only) but does not mention return format, error behavior, permissions, or side effects. For a simple getter, the lack of any additional context leaves the agent uncertain about what to expect.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately communicates the action and target. No unnecessary words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with only two required parameters and no output schema. The description provides the basic purpose but lacks information about the returned structure, possible errors, or any preconditions. It is minimally viable but leaves gaps in agent-facing completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and both parameters (session_id and project_slug) have clear descriptions in the schema. The description itself adds no additional meaning to the parameters, meeting the baseline for well-documented schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get detailed information') and a specific resource ('a specific project in the session'), clearly distinguishing it from sibling tools like list_projects or create_project. The phrase 'specific project' signals a targeted lookup rather than a list or mutation operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving details of one project, which is distinct from listing all projects or mutating a project. However, it doesn't explicitly state when not to use this tool or mention alternatives, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools are clearly distinct, targeting specific resources (projects, data sources, tools) and actions (add, create, delete, update). Slight overlap exists between toggle_tool and update_tool, and between add_data_source and add_tool, but descriptions clarify the differences.
All tool names follow a consistent verb_noun pattern with snake_case, such as add_data_source, create_project, delete_tool, and reorder_steps. No mixing of conventions or vague verbs.
13 tools is within the ideal range for a project management server. Each tool serves a clear purpose in managing projects, data sources, tools, and sessions, without unnecessary redundancy.
Core CRUD operations are covered for projects and tools, with additional operations like reorder and toggle. Minor gaps exist: data sources lack an update operation, and there's no explicit list/get for tools or data sources, but project details likely cover this.