Skip to main content
Glama

Work Create

work_create

Create a work item. Created active immediately for humans and agents (no approval queue).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoNoOptional workspace slug tag
tagsNoOptional tags
agentNoOverride agent identity
titleYesShort task title
due_atNoOptional due datetime
githubNoOptional owner/repo tag
part_ofNoOntology entity this beat belongs to (campaign Project name)
priorityNourgent, high, normal, lownormal
start_atNoOptional start datetime
item_typeNotask, milestone, or approvaltask
parent_idNoParent task UUID (makes this a subtask)
project_idNoAdd the task to this project UUID
section_idNoPlace in this project section UUID
assignee_idNoAssignee UUID
descriptionNoAlias for description_md
work_statusNoInitial workflow statustodo
assignee_typeNoAssignee type (user)
initiative_idNoOptional strategic initiative UUID
playbook_slugNoNamed playbook to inject when agent_run_start(work_id=) spawns (e.g. teamshared-manager). Unset = no inject
assignee_emailNoAssign to org member by email
description_mdNoOptional markdown body
assigned_to_entityNoOntology Person or Agent name (graph assigned_to; not assignee_email)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. Changed1 schema field changed
    • addedInput schema / properties / playbook_slug
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Named playbook to inject when agent_run_start(work_id=) spawns (e.g. teamshared-manager). Unset = no inject"
      +}
  2. Changed2 schema fields changed
    • addedInput schema / properties / assigned_to_entity
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Ontology Person or Agent name (graph assigned_to; not assignee_email)"
      +}
    • addedInput schema / properties / part_of
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Ontology entity this beat belongs to (campaign Project name)"
      +}
  3. First observed

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose one genuinely useful trait — items become active immediately with no approval queue — which matters for an agent deciding whether created items will take effect right away. It does not disclose other side effects of mutation, such as visibility persistence or whether creation is reversible, but the immediate-activation note is meaningful.

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?

Two sentences with no filler, and the core action is front-loaded. The phrase 'Created active immediately' is slightly awkward grammatically, but the size is appropriate and every clause earns its place.

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?

The output schema relieves the description of explaining return values, and the activation behavior is covered. However, for a 22-param mutation tool with zero annotations, the description is thin: it doesn't hint at the breadth of configuration options (parenting, projects, playbooks, initiative linking) or any side effects beyond immediate activation. Adequate but not rich.

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 100%, so every parameter is already documented in the schema and the baseline of 3 applies. The description adds no parameter-level meaning beyond what the schema provides; it does not, for example, clarify which options interplay with the activation behavior.

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?

The description states a specific verb and resource — 'Create a work item' — which clearly distinguishes this from sibling work_* tools like work_update, work_get, and work_close. It doesn't elaborate that a work item encompasses tasks, milestones, and approvals (that's left to the item_type parameter), but the core purpose is unambiguous.

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 is given on when to use this tool versus alternatives. Among 22 siblings in the work_* family there is no mention of when to choose work_create over work_add_to_project or work_update, and no prerequisites are stated. The activation note is behavioral, not usage guidance.

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.

TDQS

B3.4/5.0
Disambiguation4/5

With 104 tools across many domains (memory, work, projects, files, agents, context, strategic, ontology), the use of clear prefixes (memory_, work_, project_, file_, agent_run_, context_) makes most tools distinct. However, there are some potential confusions between memory_session_* vs memory_state_*, and memory_recall vs memory_think vs memory_assemble_context, though descriptions clarify their specific purposes. Aliases like memory_playbook_get for memory_procedure_get are explicit and reduce ambiguity.

Naming Consistency5/5

Tool names follow a highly consistent pattern: prefix_domain_action (e.g., file_create, work_update, memory_recall, agent_run_start). All use snake_case, with verbs consistently placed after the domain prefix. Even less common tools like account_brief and attention_snapshot fit the overall naming scheme, making the set predictable and easy to navigate.

Tool Count3/5

At 104 tools, this is an exceptionally large surface area, far exceeding the 25+ threshold that feels heavy. However, the server covers an extensive domain (organizational memory, work management, project tracking, file sharing, agent orchestration, and strategic planning), which justifies a large count. Still, the sheer number may overwhelm agents, and some tools could be consolidated (e.g., many memory_session_* and memory_state_* variants).

Completeness4/5

The tool surface is remarkably complete for its stated purpose, covering CRUD operations for files, work items, projects, and memory, plus lifecycle management for agents, sessions, and strategic plans. Minor gaps exist (e.g., no direct memory_item_get by ID, no section removal in projects), but agents can work around these using existing tools like memory_recall or work_create with parent_id. Overall, the set minimizes dead ends.