Skip to main content
Glama

IDS MCP Server

add_bounds_restriction

Define numeric value constraints for building specification parameters by setting minimum and maximum limits to ensure compliance with IDS standards.

Instructions

Add numeric bounds restriction.

Args: spec_id: Specification identifier or name facet_index: Index of facet in location (0-based) parameter_name: Which parameter to restrict (e.g., "value") base_type: XSD base type (e.g., "xs:double", "xs:integer") ctx: FastMCP Context (auto-injected) location: "applicability" or "requirements" (default: "requirements") min_inclusive: Minimum value (inclusive) max_inclusive: Maximum value (inclusive) min_exclusive: Minimum value (exclusive) max_exclusive: Maximum value (exclusive)

Returns: {"status": "added", "restriction_type": "bounds", "spec_id": "S1"}

Example: Add bounds to property value: Height must be between 2.4 and 3.0 meters

Input Schema

NameRequiredDescriptionDefault
spec_idYes
facet_indexYes
parameter_nameYes
base_typeYes
locationNorequirements
min_inclusiveNo
max_inclusiveNo
min_exclusiveNo
max_exclusiveNo

Input Schema (JSON Schema)

{ "properties": { "base_type": { "type": "string" }, "facet_index": { "type": "integer" }, "location": { "default": "requirements", "type": "string" }, "max_exclusive": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null }, "max_inclusive": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null }, "min_exclusive": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null }, "min_inclusive": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null }, "parameter_name": { "type": "string" }, "spec_id": { "type": "string" } }, "required": [ "spec_id", "facet_index", "parameter_name", "base_type" ], "type": "object" }

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/vinnividivicci/ifc-ids-mcp'

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