Skip to main content
Glama

add_project

Register a project in the central MCP registry to enable future agent dispatches. Optionally specify language, workspace, tags, and agent settings for dispatch.

Instructions

Append a project to registry.yaml.

Registration is immediate. The agent is not spawned until the next dispatch call. If the agent is codex, also adds a trusted- directory entry to ~/.codex/config.toml so codex exec doesn't refuse to run in that path.

language (optional): preferred response language for dispatches (e.g. "Korean", "ko", "Français", "fr"). When set, every future dispatch prepends "Respond to the user in ." to the prompt. Omit or leave empty for the agent's own default (English).

workspace (optional): if given, also add the project to this workspace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
pathYes
tagsNo
agentNoclaude
languageNo
workspaceNo
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.20.0

TDQS

A4.2/5.0
Behavior5/5

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

With no annotations provided, the description fully discloses behavioral traits: immediate registration, deferred agent spawn, the codex trusted-directory addition, and the language prepend behavior. It also details workspace behavior, covering mutation side effects and prerequisites without contradiction.

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 well-organized, front-loading the core action and then using bullet-style paragraphs for optional parameters. It is slightly long but every sentence adds relevant context; no filler or repetition.

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 7-parameter tool with zero schema coverage, the description covers the most behaviorally significant parameters but leaves 'tags' and 'agent' completely unexplained. The presence of an output schema mitigates the need to describe return values, but parameter coverage is incomplete for an agent to use all options correctly.

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?

Schema coverage is 0%, so the description must compensate. It explains the 'language' and 'workspace' parameters in detail, including default behavior and formatting. However, it does not explain 'name', 'path', 'tags', 'agent', or 'description', leaving their semantics to inference or schema defaults.

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 opens with a specific verb ('Append') and resource ('registry.yaml'), making the core action unambiguous. It also clarifies that this is an addition operation (not update/removal) by describing the registry append and the deferred agent spawn, which separates it from siblings like update_project.

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

Usage Guidelines4/5

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

The description clearly states the operation's effect ('Registration is immediate... not spawned until next dispatch'), which tells an agent when it is appropriate to use this tool. It does not explicitly name alternatives or exclusion conditions, but the side-effect explanation implies the timing and scope of use.

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