Skip to main content
Glama
TylerIlunga

Procore MCP Server

List Assets

list_assets_project
Read-onlyIdempotent

List assets for a Procore company and project. Apply filters, sorting, and pagination to get the full field set for each asset. Read-only, so it changes nothing in Procore.

Instructions

Returns List of Assets by given Company and Project. Use this when you already know which asset you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted. Returns a single JSON object describing the asset. Read-only — it changes nothing in Procore. 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: company_id, project_id. Procore API (v2.0): Core > Assets. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/assets

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoQuery string parameter — one-based page index (1..N)
sortNoQuery string parameter — sorting criteria in minus-based order format. Default sort order is ascending. Multiple sort criteria can be provided in CSV format, for example: sort=asset_name,-modified_at.
viewNoQuery string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields
searchNoQuery string parameter — search query. Searches across: asset_id (asset_code), asset_name, description, created_by (user name), modified_by (user name), asset_type (name), asset_status (name), trade (name), and custom fiel...
per_pageNoQuery string parameter — the size of the page to be returned
company_idYesURL path parameter — unique identifier for the company.
project_idYesURL path parameter — unique identifier for the project.
filters__idNoQuery string parameter — filter by asset IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'id1,id2,id3').
can_link_withNoQuery string parameter — when provided with normal or extended view, each asset includes a 'linkable' boolean indicating whether it can be linked with the specified item type. Supported values: PublicDomainApi::BimModelCon...
Accept-LanguageNoJSON request body field — locale for localized response messages (for example: en, fr-FR, pseudo)
include_bim_infoNoQuery string parameter — include BIM scene and object information in response. BIM info is included when this parameter is true.
filters__scene_idNoQuery string parameter — filter by BIM scene IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'sceneId1,sceneId2').
filters__trade_idNoQuery string parameter — filter by trade IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'tradeId1,tradeId2').
wrap_custom_fieldsNoQuery string parameter — when true, wraps each custom field value as {"value": ...} and renames "name" to "label" inside LOV objects.
filters__asset_codeNoQuery string parameter — filter by asset IDs (asset_code in API, also referred as asset_id). Case-insensitive. Accepts a single ID or multiple comma-separated IDs (e.g., 'ASSET-001,ASSET-002').
filters__created_atNoQuery string parameter — created at filter (date range format: YYYY-MM-DD...YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ...YYYY-MM-DDTHH:MM:SSZ)
filters__location_idNoQuery string parameter — filter by location IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'locId1,locId2').
filters__modified_atNoQuery string parameter — updated at filter (date range format: YYYY-MM-DD...YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ...YYYY-MM-DDTHH:MM:SSZ)
include_profile_imageNoQuery string parameter — include profile image URLs in response. Profile image URLs are included in all views when this parameter is true.
filters__asset_type_idNoQuery string parameter — filter by asset type IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'typeId1,typeId2').
filters__asset_status_idNoQuery string parameter — filter by asset status IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'statusId1,statusId2').
filters__custom_field_idNoQuery string parameter — filter by custom field values. Supported only for single select, multi-select, and datetime fields. Can be used multiple times for different custom fields. Supports single values (e.g., 'filters[cu...
Behavior3/5

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

The description adds useful behavioral context beyond the annotations: it explicitly confirms read-only behavior, lists typical HTTP error statuses (401, 403, 404), and mentions defaulting of company_id/project_id from procore_set_config. However, the contradictory return-type statement ('single JSON object' vs 'List of Assets') and the defaulting claim that conflicts with the schema's required flag undermine the transparency. With annotations already covering the read-only and idempotent hints, these additions are valuable but not fully reliable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a dense paragraph with redundant and misleading content. It repeats the required-parameter information already present in the schema, restates read-only behavior already captured by annotations, and includes the contradictory 'single JSON object' sentence. It could be far more concise and structured, e.g., by clearly stating 'paginated list' and using bullets for error handling.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a 22-parameter list endpoint with no output schema, so the description must clarify the response shape. Instead, it misstates the response as a single asset object, omits any mention of pagination (despite page/per_page parameters), and does not explain how filters narrow results. While endpoint and error-code details are useful, the core misunderstanding about the return type leaves the description incomplete and potentially misleading.

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

Parameters2/5

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

Schema coverage is 100%, so the baseline is 3, but the description actively introduces confusion rather than adding value. It says company_id and project_id default to procore_set_config values when omitted, yet the schema marks them as required and the description also calls them 'Required parameters.' This contradiction could lead an agent to omit required fields or mismanage invocation. No other parameters are meaningfully enriched beyond their schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence, 'Returns List of Assets by given Company and Project,' is clear, but the very next sentence claims 'Returns a single JSON object describing the asset,' which directly contradicts the list semantics. The phrase 'Use this when you already know which asset you want and need its full field set' further suggests a show/detail operation rather than a listing, making the tool's actual purpose confusing for an agent.

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?

The only usage guidance, 'Use this when you already know which asset you want and need its full field set,' is misleading because it describes a show-asset scenario, not a list scenario. There is no mention of when to prefer this over sibling tools like list_assets_company, show_asset_project, or show_asset_by_code_project, and no exclusions or alternative recommendations.

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