Skip to main content
Glama

Get development standards

get_standards
Read-only

Returns the organization's development standards: coding conventions, project structure, and framework-specific rules. Read-only. Call it before writing or reviewing code, so the result follows this organization's rules rather than general defaults. Call it first without a section to get an index of available sections, each with a note on what it covers, then call again with one section id copied from that index; inventing a section id returns a not-found error naming that step. Request only the sections a task needs - the full content of one section can be long. The framework argument is deprecated: use section with the "framework:" prefix instead. It returns prose rules, not data - use get_style_tokens for visual values and get_component for component APIs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sectionNoSection identifier from the index, e.g. "global", "project_structure", "framework:react", "cicd". Omit to get the index.
frameworkNoDeprecated - use section instead. e.g. "react", "nextjs"
project_idYesUUID as returned by list_projects - not the project name, title, or slug, and not guessable. Fetch it once and reuse the same id across tools. An id outside the caller's organization returns "Project not found or access denied" rather than empty data, and a project withheld by a plan limit returns a plan error that retrying cannot clear. It resolves the organization whose standards are returned and decides which framework sections appear in the index.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / project_id / description
      Previous value: -"Project ID from list_projects"New value: +"UUID as returned by list_projects - not the project name, title, or slug, and not guessable. Fetch it once and reuse the same id across tools. An id outside the caller's organization returns \"Project not found or access denied\" rather than empty data, and a project withheld by a plan limit returns a plan error that retrying cannot clear. It resolves the organization whose standards are returned and decides which framework sections appear in the index."
  2. First observed

TDQS

A5/5.0
Behavior5/5

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

Annotations only declare readOnly, but the description discloses important behavior: full sections can be long, inventing a section id returns a not-found error, project_id is not guessable and must come from list_projects, and that out-of-organization ids return an obfuscated error. It also clarifies that returns prose rules, not structured data. This adds considerable transparency beyond the 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?

The description is compact yet dense, with each sentence adding a distinct behavioral or usage fact. It is front-loaded with the primary purpose and the 'Call it before' timing, then narrows down to workflow and alternatives. It carries no fluff or repetitive schema details, though the 'Read-only' is already in annotations; that duplication is minor.

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?

Given that there is no output schema, the description sufficiently explains the return behavior (index first, then section content) and error cases. It also covers prerequisites (project_id UUID, no guessing ids), constraints (limit to needed sections), and distinguishes prose rules from the data returned by sibling tools, so an AI agent can invoke the tool correctly and interpret results.

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

Parameters5/5

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

Even though schema coverage is 100%, the description adds substantial semantic value: section ids must come from the index, the framework parameter should be translated to a 'framework:' section prefix, and project_id is specifically a UUID from list_projects that resolves the org and controls which sections appear. This enrichment helps an agent select and reuse parameters correctly.

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 clearly states the tool returns the organization's development standards: coding conventions, project structure, and framework-specific rules, with a specific verb 'returns' and resource. It also distinguishes itself from siblings by name, noting that get_style_tokens should be used for visual values and get_component for component APIs.

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?

Usage guidance is explicit and comprehensive: 'Call it before any code review or review' identifies the right moment to use it; 'Call it first without section' describes the two-step index-and-select workflow; and it tells the agent to request only needed sections and explicitly flags that the framework argument is deprecated. It also names direct alternatives for different data types, showing when not to use this tool.

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.