BuildingLink MCP Server
About
The BuildingLink MCP Server is a Model Context Protocol server that enables connecting an LLM to data from the BuildingLink property management platform. It is intended for users who want to query their BuildingLink account information—such as occupant profiles, vendors…
Details
- Author
- johnagan
- Downloads
- 174
- Categories
- Other
Jump to
- Retrieves the logged-in occupant’s profile
- Lists preferred vendors for the user
- Accesses the current user’s authentication token
- Lists buildings (properties) associated with the user
- Gets the logged-in user’s full BuildingLink profile
- Returns deliveries, library items, announcements, and events
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
BuildingLink MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the server by adding it to the mcpServers section of your MCP host configuration file. Set the environment variables BUILDINGLINK_USERNAME and BUILDINGLINK_PASSWORD with your BuildingLink website login credentials. The server is invoked via npx -y johnagan/buildinglink-mcp.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"buildinglink mcp server": {
"buildinglink": {
"command": "npx",
"args": [
"-y",
"johnagan/buildinglink-mcp"
],
"env": {
"BUILDINGLINK_USERNAME": "your-username",
"BUILDINGLINK_PASSWORD": "your-password"
}
}
}
}
}
McpServers
{
"buildinglink": {
"command": "npx",
"args": [
"-y",
"johnagan/buildinglink-mcp"
],
"env": {
"BUILDINGLINK_USERNAME": "your-username",
"BUILDINGLINK_PASSWORD": "your-password"
}
}
}
BuildingLink MCP Server
This is a MCP server for BuildingLink. It enables you to collect your LLM to data from BuildingLink.
Resources
This MCP server exposes the following tools:
| Tool | Description |
|----------|-------------|
| getOccupant | The logged in occupant's profile |
| getVendors | A list of preferred vendors |
| getToken | The token of the used logged in |
| getBuildings | The buildings (properties) associated with the logged in user |
| getUser | The logged in user's BuildingLink profile |
| getDeliveries | A list of all deliveries for the logged in user |
| getLibrary | A list of all library items for the logged in user and building |
| getAnnouncements | A list of all announcements for the logged in user and building |
| getEvents | A list of all events for the logged in user and building |
Host Configuration
The MCP server is configured in the mcpServers section of the host configuration file.
The username and password should be the same that's used to login to the BuildingLink website.
{
"mcpServers": {
"buildinglink": {
"command": "npx",
"args": ["-y", "johnagan/buildinglink-mcp"],
"env": {
"BUILDINGLINK_USERNAME": "your-username",
"BUILDINGLINK_PASSWORD": "your-password"
}
}
}
}
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



