Skip to main content
Glama

acc_create_issue

Create a real issue (punchlist/QC item) in ACC Build's Issues module via the APS Construction Issues v1 API. Returns the ACC-generated issue_id which can be linked back to a model URN or a detected clash. When to use: detect_clashes flagged a critical clash, or a field user reports a QC defect, and you want to track it in ACC for assignment and closeout. When NOT to use: you want to file a formal information request between trades — use acc_create_rfi instead. You want a note on a model element — that is a markup, not an issue. APS scopes: data:read data:write account:read Rate limits: APS default ~50 req/min per app per endpoint; Model Derivative translation jobs ~60 req/min; OSS uploads size-limited per file to 100MB for direct upload, larger via resumable. Errors: 401 APS token expired/invalid — refresh; 403 scope or resource permission denied (app not provisioned for the project's ACC account); 404 project_id not found — check the ID (strip any leading 'b.'); 429 rate limited — backoff and retry; 5xx APS upstream outage — retry with jitter. Side effects: NON-IDEMPOTENT. Creates a new ACC issue each call (repeated calls create duplicates). Inserts a row into D1 usage_log.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesShort human-readable issue title, 1-255 chars. Shows up as the headline in ACC Issues UI.
due_dateNoISO 8601 calendar date (YYYY-MM-DD). Time component is ignored by ACC.
priorityNoACC issue priority. Defaults to 'medium' if omitted.
project_idYesACC project ID in either 'b.<uuid>' or plain '<uuid>' form (the worker strips the 'b.' prefix before calling the Issues endpoint). Obtainable via acc_list_projects.
assigned_toNoACC user ID (UUID) or email of the assignee. Pass null or omit to leave unassigned.
descriptionYesLong-form issue body. Plain text; supports newlines. Include clash coordinates, trade impact, and suggested fix.
linked_model_idNoOptional APS URN linking this issue back to the source model. Stored for ScanBIM cross-referencing; not forwarded to ACC's linkedDocuments field.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed14 schema fields changed
    • changedInput schema / properties / assigned_to / description
      Previous value: -"User ID or email to assign"New value: +"ACC user ID (UUID) or email of the assignee. Pass null or omit to leave unassigned."
    • addedInput schema / properties / assigned_to / examples
      Added value: +[
      +  "jdoe@contractor.com"
      +]
    • addedInput schema / properties / description / description
      Added value: +"Long-form issue body. Plain text; supports newlines. Include clash coordinates, trade impact, and suggested fix."
    • addedInput schema / properties / description / examples
      Added value: +[
      +  "16\" supply duct (Mech-L3-SD-42) conflicts with W18x35 beam at elev 10'-6\". Reroute duct above beam per SMACNA, maintain 18\" clearance."
      +]
    • changedInput schema / properties / due_date / description
      Previous value: -"ISO date string (YYYY-MM-DD)"New value: +"ISO 8601 calendar date (YYYY-MM-DD). Time component is ignored by ACC."
    • addedInput schema / properties / due_date / examples
      Added value: +[
      +  "2026-05-15"
      +]
    • addedInput schema / properties / linked_model_id / description
      Added value: +"Optional APS URN linking this issue back to the source model. Stored for ScanBIM cross-referencing; not forwarded to ACC's linkedDocuments field."
    • addedInput schema / properties / linked_model_id / examples
      Added value: +[
      +  "dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6c2NhbmJpbS1tb2RlbHMvMTcwMDAwMDAwMDAwMF9idWlsZGluZy5ydnQ"
      +]
    • addedInput schema / properties / priority / description
      Added value: +"ACC issue priority. Defaults to 'medium' if omitted."
    • addedInput schema / properties / priority / examples
      Added value: +[
      +  "high"
      +]
    • changedInput schema / properties / project_id / description
      Previous value: -"ACC project ID (b.xxxx format)"New value: +"ACC project ID in either 'b.<uuid>' or plain '<uuid>' form (the worker strips the 'b.' prefix before calling the Issues endpoint). Obtainable via acc_list_projects."
    • addedInput schema / properties / project_id / examples
      Added value: +[
      +  "b.a4be0c34a-4a01-4b0e-9f1a-123456789abc"
      +]
    • addedInput schema / properties / title / description
      Added value: +"Short human-readable issue title, 1-255 chars. Shows up as the headline in ACC Issues UI."
    • addedInput schema / properties / title / examples
      Added value: +[
      +  "Duct/beam clash at Level 3 gridline C-4"
      +]
  2. First observed

TDQS

A4.8/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: non-idempotency (creates duplicates on repeated calls), side effects (inserts into D1 usage_log), error conditions (401/403/404/429/5xx) with actionable advice, and required APS scopes. It also notes that linked_model_id is not forwarded to ACC's linkedDocuments field. This goes beyond the schema and is exceptionally transparent for a mutating tool.

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-structured with clear sections (When to use, When NOT to use, APS scopes, Rate limits, Errors, Side effects) and front-loads the main purpose. It is verbose, but most content is relevant. The rate limits section includes Model Derivative and OSS details that are not directly relevant to this Issues API, adding minor noise. Still, it is organized and readable, so a 4 is appropriate.

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 the tool has 7 parameters, no annotations, no output schema, and is a mutation with side effects, the description covers all necessary context: purpose, usage triggers, exclusions, scopes, rate limits, error handling, side effects, and return value. It is comprehensive enough for an agent to know when and how to invoke it correctly, and what to expect in response.

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

Parameters4/5

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

Schema description coverage is 100%, so the schema already documents all parameters well. The description adds extra semantic value by explaining that the worker strips the 'b.' prefix from project_id (also in schema), and clarifies that linked_model_id is only for ScanBIM cross-referencing and not sent to ACC. These details are not obvious from the schema alone, justifying an above-baseline score of 4.

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 creates an ACC issue via the APS Construction Issues v1 API, specifying the exact resource (Issues module) and action (create). It distinguishes itself from siblings by explicitly naming acc_create_rfi as the alternative for RFIs and clarifying that markups are not issues. This is a specific verb+resource pair with clear differentiation.

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 has explicit 'When to use' and 'When NOT to use' sections. It gives concrete triggers (detect_clashes flagged a critical clash, field user reports a QC defect) and excludes alternatives (acc_create_rfi, model markups). It also provides error handling guidance and rate limit context, making it clear when to invoke this tool versus alternatives.

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.

Resources