Skip to main content
Glama

get_project

Read-onlyIdempotent

Retrieve a project's configuration to find valid status, priority, and environment values before setting them. Avoid hardcoding by fetching system fields and custom field definitions.

Instructions

Get a project's configuration: its meta, the system-field vocabularies it actually uses (statuses/priorities/environments), and its case custom-field definitions. Call this to discover the VALID status and priority values before setting any of them: case_status and case_priority (test cases), execution_status (a Manual Test Execution overall), test_case_execution_status (a case inside one), test_run_status (a source group or a Test Collection), release_status (releases) and test_environment. Every one of them is project-customizable, so never hardcode a value or assume the stock list. Each entry is { value, label, isDefault }: send the VALUE to other tools, never the label, and isDefault marks what a create tool will use when you omit the field. Returns { project, systemFields{ case_status, case_priority, execution_status, test_case_execution_status, test_run_status, release_status, test_environment }, customFields[] }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYesProject UUID (from list_projects)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.5.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already mark this as read-only, and the description adds the useful behavioral detail that the returned vocabularies are authoritative, project-specific, and that callers must use the VALUE rather than the label elsewhere. It also explains isDefault semantics, which helps other tools behave correctly after this call.

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?

The description is somewhat verbose but every sentence contributes meaningful guidance. It is appropriately front-loaded with a clear summary, then details, usage warning, and return shape. The only minor downside is that it lists many field names inline, making the text denser than necessary.

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

Completeness5/5

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

For a 1-parameter read-only configuration tool, the description is complete: it states the tool's purpose, when to use it, what the valid-looking fields mean, how defaults behave, and the full return structure. No additional details such as auth, side effects, or prerequisites are needed for this operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There is only one required parameter (the project ID), and schema description coverage is 100%, so the schema mostly says what is needed. The description focuses on the output rather than how to provide the project ID, so it adds limited parameter meaning beyond the schema.

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 states a specific verb and resource ('Get a project's configuration') and its full scope: metadata, system-field vocabularies, and custom-field definitions. It clearly differentiates this discovery tool from the many sibling get_* and list_* tools by focusing on valid settings rather than a single entity's contents.

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

Usage Guidelines5/5

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

The description explicitly says when to use it: before setting any status or priority value. It warns not to hardcode values and explains that these vocabularies are project-customizable, which prevents misuse. This gives an agent clear selection and invocation guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/m00nreport/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server