Skip to main content
Glama
TylerIlunga

Procore MCP Server

Create Meeting Category

create_meeting_category

Create a new meeting category for a specified meeting in a Procore project. Submit project_id, meeting_id, and meeting_category to create it and receive the new category with its ID.

Instructions

Create a new Meeting Category. Creates the meeting category 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, meeting_id, meeting_category. Procore API: Project Management > Meetings. Endpoint: POST /rest/v1.0/meeting_categories

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
meeting_idYesJSON request body field — the ID of the Meeting the Meeting Category belongs to
project_idYesJSON request body field — the ID of the Project the Meeting Category belongs to
meeting_categoryYesJSON request body field — meeting Category object
Behavior4/5

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

Annotations already indicate a non-read-only, non-idempotent, non-destructive operation. The description adds concrete behavioral context: returns the created record with id, HTTP 201, and maps common error statuses (401/403/404) to likely causes. This goes beyond the annotations and helps the agent anticipate failures.

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 information-dense but each sentence earns its place: behavior, idempotency, error handling, required params, and endpoint. It is not padded with fluff, though it could be slightly more structured (e.g., separating error info).

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 create tool with no output schema, the description covers return behavior, status codes, and endpoint context. However, it does not explain the structure of the nested `meeting_category` object, which is a significant gap for an agent trying to construct a valid request.

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% with descriptions for all three parameters. The description restates them as required but adds no extra meaning beyond the schema. The `meeting_category` object remains opaque (additionalProperties: {}), so no additional semantic value is provided.

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 'Create a new Meeting Category' and specifies the action returns the record with its new id (HTTP 201). It also distinguishes from siblings by noting non-idempotent behavior ('calling it again creates another record') and positioning within Project Management > Meetings.

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?

It explicitly notes required parameters and the non-idempotent nature, making clear when to use (to create a new category) and warning against repeated calls. It does not name alternative tools (e.g., update_meeting_category), so it lacks explicit alternatives/exclusions, but the context is unambiguous.

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