bSDD MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bSDD MCP ServerList all available bSDD dictionaries"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bSDD MCP Server
MCP server for the buildingSMART Data Dictionary (bSDD) API. Enables AI assistants like Claude to query standardized building classifications, properties, and data dictionaries for BIM model enrichment.
What is bSDD?
The buildingSMART Data Dictionary is an online service that hosts classifications and their properties, allowed values, units, translations, and relations. It provides a standardized way to describe building elements across multiple classification systems like IFC, ETIM, UniClass, OmniClass, and many more.
Related MCP server: revit-mcp
Features
This MCP server exposes 9 tools to query the bSDD API:
Tool | Description |
| List available dictionaries (IFC, ETIM, UniClass, etc.) |
| Browse class hierarchy of a dictionary |
| Get full class details with properties and relations |
| Search classes by keyword across dictionaries |
| Get properties of a class (data types, units, allowed values) |
| Get relationships between classes |
| Get property details (type, unit, constraints) |
| Find which classes use a given property |
| Free-text search across all bSDD content |
No API key required — the bSDD public read endpoints are used.
Installation
Prerequisites
Node.js 18 or higher
Setup
Clone the repository
git clone https://github.com/JardiMargalefAgusti/bSDD-mcp.git
cd bSDD-mcpInstall dependencies
npm installBuild
npm run buildConfigure Claude Desktop
Open Claude Desktop settings: Settings → Developers → Edit Config
Add the following entry inside "mcpServers":
{
"mcpServers": {
"bSDD": {
"command": "node",
"args": ["/absolute/path/to/bSDD-mcp/build/index.js"]
}
}
}Replace
/absolute/path/to/bSDD-mcpwith the actual path where you cloned the repository.Windows example:
"args": ["C:\\Users\\youruser\\bSDD-mcp\\build\\index.js"]macOS/Linux example:
"args": ["/Users/youruser/bSDD-mcp/build/index.js"]
Restart Claude Desktop
The 9 bsdd_* tools should now appear in your tool list.
Usage Examples
Once connected, you can ask Claude things like:
"List all available bSDD dictionaries"
"What properties should an IfcWall have according to IFC 4.3?"
"Search bSDD for fire resistance properties"
"Get the class definition of IfcDoor with its property sets"
"Which IFC classes use the AcousticRating property?"
"Show me the ETIM classification for electrical panels"
"What are the allowed values for the FireRating property?"
BIM Enrichment Workflows
This server is designed to work alongside other BIM-related MCP servers:
bSDD + IFC Viewer (BIM-Builder)
Query bSDD for standard properties of an IFC class
Check which properties are missing in your loaded IFC model
Create PropertySets and add standardized properties
bSDD + Revit (FlowRun)
Search bSDD for classification codes and required properties
Generate shared parameters in Revit
Assign standardized values by category/type
Project Structure
bSDD-mcp/
├── src/
│ ├── index.ts # MCP server entry point (stdio transport)
│ ├── bsdd-client.ts # HTTP client for bSDD REST API
│ ├── tools/
│ │ ├── dictionaries.ts # Dictionary browsing tools
│ │ ├── classes.ts # Class lookup, search, properties, relations
│ │ ├── properties.ts # Property details and reverse-lookup
│ │ └── search.ts # Free-text search
│ └── types/
│ └── bsdd.ts # TypeScript interfaces for API responses
├── package.json
├── tsconfig.json
└── build/ # Compiled JavaScript (generated)API Reference
This server uses the bSDD REST API:
Base URL:
https://api.bsdd.buildingsmart.orgAuthentication: None required (public read access)
Documentation: bSDD API docs
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBquality-maintenanceEnables seamless communication between Claude AI and Autodesk Revit, allowing users to access and interact with Revit model information through natural language.Last updated618
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with Autodesk Revit to query project data, manage elements, and execute generated code via the Model Context Protocol. It provides full compatibility with GitHub Copilot and Claude to automate BIM modeling workflows.Last updated1346MIT
- AlicenseCqualityDmaintenanceEnables AI assistants to create, edit, and export IFC5/IFCX building information models through natural language, handling spatial structure, elements, geometry, metadata, validation, and export.Last updated731318Apache 2.0
- AlicenseAqualityBmaintenanceEnables AI agents to load, query, and analyze IFC building model files, including spatial structures, elements, properties, materials, and geometry.Last updated20MIT
Related MCP Connectors
Convert Revit files to XKT, IFC, or DWG and query BIM data via natural language.
DXF and PDF/X-4 for AI agents: structured facts, PNG renders, an interactive in-chat viewer.
Unified AEC tools: ACC, Revit, Navisworks, Twinmotion, and APS from one endpoint.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/JardiMargalefAgusti/bSDD-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server