Skip to main content
Glama

Server Details

Search building products & manufacturers for AI agents: CAD, BIM, specs by CSI from arcat.com

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.4/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct resource: CSI sections, manufacturer profiles, manufacturer search, product search. No overlap in functionality.

Naming Consistency5/5

All tools follow consistent verb_noun snake_case pattern (browse_, get_, search_, search_), making the action and target clear.

Tool Count4/5

4 tools is slightly low but appropriate for a focused read-only lookup server covering categories, manufacturers, and products.

Completeness4/5

Covers the main lookup workflows. Missing a direct product detail by ID tool, but search_products provides sufficient details. No CRUD needed.

Available Tools

4 tools
browse_csi_sectionsBrowse CSI SectionsA
Read-onlyIdempotent
Inspect

Browse CSI MasterFormat building product categories.

No parameters: list all divisions (e.g., "07 - Thermal and Moisture Protection"). Division only: list all entries under that division. Division + level: filter by hierarchy depth: Level 1 = Groups (e.g., 07 10 00 Dampproofing and Waterproofing) Level 2 = Sections (e.g., 07 21 00 Thermal Insulation) Level 3 = Narrowscope (e.g., 07 21 13 Board Insulation) Add section to drill into a specific parent (e.g., division "07", level 2, section "072000").

ParametersJSON Schema
NameRequiredDescriptionDefault
levelNoHierarchy depth within division: 1=group, 2=section, 3=narrowscope
sectionNoParent section code to filter within (e.g., "072000" to see sections under Thermal Protection)
divisionNoCSI division code (e.g., "07"). Omit to list all divisions.

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
sectionsYes
Behavior5/5

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

The description adds significant behavioral context beyond the annotations (readOnlyHint, idempotentHint). It details the hierarchical navigation, exact outputs for different parameter states, and uses examples for each level (e.g., Level 2 = Sections). No contradiction with annotations.

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

Conciseness5/5

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

The description is remarkably concise yet comprehensive. It starts with a clear purpose, then uses bullet-like explanations for parameter behaviors with examples. Every sentence serves a purpose, and the structure is easy to parse.

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's moderate complexity (hierarchical browsing with 3 parameters) and the presence of an output schema, the description covers all necessary behavioral details. It explains the hierarchy levels, parameter combinations, and even provides concrete CSI code examples, leaving no gaps.

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?

Although schema coverage is 100%, the description adds substantial meaning: it explains the effect of each parameter in combination, provides realistic examples for 'level' values (1/2/3 with CSI code patterns), and clarifies that omitting 'division' lists all divisions. This goes beyond the schema's basic field 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 clearly states the tool's purpose: browsing CSI MasterFormat building product categories. It distinguishes from sibling tools (get_manufacturer, search_manufacturers, search_products) by focusing on category hierarchy rather than product or manufacturer data.

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 explicitly explains how parameter combinations affect results: no params lists all divisions, adding division filters by division, division+level filters hierarchy depth, and adding section drills into a specific parent. This gives clear step-by-step guidance for the agent.

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

get_manufacturerGet Manufacturer ProfileA
Read-onlyIdempotent
Inspect

Get detailed profile for a specific building product manufacturer by their ARCAT ID. Returns company info, CSI sections, available content types, and product count.

ParametersJSON Schema
NameRequiredDescriptionDefault
manufacturer_idYesARCAT manufacturer ID (seq/coid)

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameNo
errorNo
websiteNo
locationNo
arcat_urlNo
csi_sectionsNo
product_countNo
manufacturer_idNo
available_contentNo
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the description adds useful context about the specific data returned (company info, CSI sections, etc.) and the identifier type. This goes beyond annotations without contradicting them.

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

Conciseness5/5

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

The description is a single, well-structured sentence with no redundancy. It front-loads the action and efficiently conveys all necessary information.

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's simplicity (one parameter, output schema present), the description sufficiently covers the return value categories and identifier requirement. No additional context is needed.

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 description coverage is 100% for the single parameter. The description adds 'by their ARCAT ID' which aligns with the schema's description, providing minimal extra semantic value beyond what the schema already conveys.

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 retrieves a detailed profile for a specific manufacturer by ARCAT ID, listing what it returns (company info, CSI sections, content types, product count). It distinguishes from sibling tools like search_manufacturers and browse_csi_sections by focusing on a single known manufacturer.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implicitly conveys usage (when you have an ARCAT ID), but does not explicitly state when to use this vs searching for manufacturers or browsing sections. No exclusion criteria or alternatives are mentioned, leaving some ambiguity for the agent.

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

search_manufacturersSearch ManufacturersA
Read-onlyIdempotent
Inspect

Search for building product manufacturers by name, keyword, or CSI MasterFormat section. Returns company details with links to their ARCAT profile.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (1-50, default 20)
queryNoText search (e.g., "terra cotta", "Owens Corning")
offsetNoPagination offset
csi_sectionNoCSI MasterFormat 04 section code (e.g., "074600")
csi_divisionNoCSI MasterFormat 04 division (e.g., "07")

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
resultsYes
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so no contradiction. Description adds that results include company details and links to ARCAT profiles, which is useful context beyond the input schema. However, does not mention pagination behavior or rate limits.

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

Conciseness5/5

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

Two sentences, no wasted words, front-loaded with the core action. Perfectly concise for the complexity.

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 full schema coverage, annotations, and presence of an output schema, the description is complete. It covers purpose, search methods, and return value without needing to explain output format.

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 has 100% coverage, so parameters are already well-documented. Description adds high-level grouping (name, keyword, or CSI section) but no additional detail beyond schema. Baseline 3 is appropriate.

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?

Description clearly states what the tool does: search for manufacturers by name, keyword, or CSI MasterFormat section, and returns company details with links. It distinguishes from sibling tools like get_manufacturer (retrieving a specific one) and browse_csi_sections (browsing sections).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description implies usage for searching manufacturers but does not explicitly state when not to use or mention alternatives like get_manufacturer for known IDs. Usage context is implied but not explicit.

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

search_productsSearch Building ProductsA
Read-onlyIdempotent
Inspect

Search for building products by keyword, CSI MasterFormat section, or content format. Returns product details with links to specifications, CAD, BIM, and catalog downloads on arcat.com.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (1-50, default 20)
queryNoText search (e.g., "fiber cement rainscreen")
offsetNoPagination offset
csi_sectionNoCSI MasterFormat 04 section code (e.g., "074600")
made_in_usaNoFilter for Made in USA products only
csi_divisionNoCSI MasterFormat 04 division (e.g., "07")
format_filterNoFilter by available content format

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
resultsYes
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, indicating safe, read-only behavior. The description adds that results include links to specs, CAD, BIM, and catalog downloads, which is consistent but does not disclose additional behavioral traits beyond the annotations. No contradiction.

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

Conciseness5/5

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

The description is concise with two sentences, front-loading the core purpose and listing search criteria before mentioning return values. Every word earns its place, with no redundancy.

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

Completeness4/5

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

Given the tool's complexity (7 optional parameters, output schema present), the description adequately covers search capabilities and return content. It lacks details on default behavior (e.g., sorting) but remains complete enough for an agent to understand the tool's scope.

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 coverage is 100%, so the baseline is 3. The description adds value by summarizing the search dimensions (keyword, CSI section, content format) and stating that results include links to specific resources, which is not in the schema. This goes beyond mere parameter listing.

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 searches for building products by keyword, CSI MasterFormat section, or content format, and specifies that it returns product details with links to various resources. This verb+resource combination distinguishes it from sibling tools like browse_csi_sections and search_manufacturers.

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?

The description provides clear context for when to use the tool (searching for building products with specific criteria) but does not explicitly mention when not to use it or suggest alternatives like browse_csi_sections for browsing sections. However, the sibling tool names imply differentiation.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources