Skip to main content
Glama
TylerIlunga

Procore MCP Server

Create Action Plan Receiver Signature

create_action_plan_receiver_signature

Create a signature for an action plan receiver. Requires project and receiver IDs plus an attachment or base64 image; returns the new signature.

Instructions

Create a single Action Plan Receiver Signature. Note that only one of attachment or attachment_string may be passed when creating a signature, not both. Pass the record's fields as top-level arguments — they are nested under "signature" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted, and plan_receiver_id must identify an existing parent record — resolve it with the matching list tool first. Creates the action plan receiver signature and returns it with its new id (HTTP 201); calling it again creates another record. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: project_id, plan_receiver_id, attachment, attachment_string. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/projects/{project_id}/action_plans/plan_receivers/{plan_receiver_id}/signature

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
attachmentYesJSON request body field — attachment representing the Signature. To upload an attachment you must upload the entire payload as `multipart/form-data` content-type with the `attachment` file.
project_idYesURL path parameter — unique identifier for the project.
plan_receiver_idYesURL path parameter — action Plan Receiver ID
attachment_stringYesJSON request body field — base64 encoded string representing PNG image of signature
Behavior5/5

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

Annotations already mark it as non-readonly and non-idempotent, but the description adds critical behavior: 'calling it again creates another record' reiterates non-idempotence, and the error status breakdown (401/403/404) helps anticipate failures. It also exposes the request payload transformation and the HTTP 201 response.

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 dense with useful information but runs to four sentences plus API metadata. It's well-organized and front-loaded, though the 'Required parameters' list duplicates the schema and the endpoint line is only relevant for debugging.

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 mutable operation with no output schema, it covers the request shape, response (new id, HTTP 201), non-idempotence, the most common error statuses, and the parent-record prerequisite. This is enough for an agent to select and invoke the tool correctly.

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?

The schema already documents all four parameters, but the description adds essential constraints: the mutual exclusivity of attachment vs attachment_string, the default for project_id, and the prerequisite that plan_receiver_id reference an existing record. These go well beyond the schema's basic type descriptions.

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 'Create a single Action Plan Receiver Signature', which clearly identifies the verb (create), the resource (Action Plan Receiver Signature), and the scope (single). It distinguishes from sibling tools like delete_action_plan_receiver_signature and create_action_plan_approver_signature by the resource type.

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?

Provides explicit guidance: only one of `attachment` or `attachment_string` may be passed, project_id falls back to procore_set_config, and plan_receiver_id must be resolved with the matching list tool first. This tells the agent when to use it and what prerequisites must be met. However, it doesn't explicitly name alternative create-signature tools (e.g., for approvers), so I'm not giving it a 5.

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

Install Server

Other Tools

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/TylerIlunga/procore-mcp-server'

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