A Model Context Protocol (MCP) server for BACnet.
Project description
BACnet MCP Server
A lightweight Model Context Protocol (MCP) server that connects LLM agents to BACnet devices in a secure, standardized way, enabling seamless integration of AI-driven workflows with Building Automation (BAS), Building Management (BMS) and Industrial Control (ICS) systems, allowing agents to monitor real-time sensor data, actuate devices, and orchestrate complex automation tasks.
Getting Started
Use uv to add and manage the BACnet MCP server as a dependency in your project, or install it directly via uv pip install or pip install. See the Installation section of the documentation for full installation instructions and more details.
uv add bacnet-mcp
The server can be embedded in and run directly from your application. By default, it exposes a Streamable HTTP endpoint at http://127.0.0.1:8000/mcp/.
# app.py
from bacnet_mcp import BACnetMCP
mcp = BACnetMCP()
if __name__ == "__main__":
mcp.run(transport="http")
It can also be launched from the command line using the provided CLI without modifying the source code.
bacnet-mcp
Or in an ephemeral, isolated environment using uvx. Check out the Using tools guide for more details.
uvx bacnet-mcp
Configuration
For the use cases where most operations target a specific device, such as a Programmable Logic Controller (PLC) or BACnet gateway, its connection settings (host and port) can be specified at runtime using environment variables so that all prompts that omit explicit connection parameters will be routed to this device.
export BACNET_MCP_BACNET__HOST=10.0.0.1
export BACNET_MCP_BACNET__PORT=47808
These settings can also be specified in a .env file in the working directory.
# .env
bacnet_mcp_bacnet__host=10.0.0.1
bacnet_mcp_bacnet__port=47808
When interacting with multiple devices, each device’s connection parameters (host, port) can be defined with a unique name in a devices.json file in the working directory. Prompts can then refer to devices by name.
{
"devices": [
{"name": "Boiler", "host": "10.0.0.3", "port": 47808},
{"name": "Valve", "host": "10.0.0.4", "port": 47808}
]
}
MCP Inspector
To confirm the server is up and running and explore available resources and tools, run the MCP Inspector and connect it to the BACnet MCP server at http://127.0.0.1:8000/mcp/. Make sure to set the transport to Streamable HTTP.
npx @modelcontextprotocol/inspector
Core Concepts
The BACnet MCP server leverages FastMCP 2.0's core building blocks - resource templates, tools, and prompts - to streamline BACnet read and write operations with minimal boilerplate and a clean, Pythonic interface.
Read Properties
Each object on a device is mapped to a resource (and exposed as a tool) and resource templates are used to specify connection details (host, port) and read parameters (instance, property).
@mcp.resource("udp://{host}:{port}/{obj}/{instance}/{prop}")
@mcp.tool(
annotations={
"title": "Read Property",
"readOnlyHint": True,
"openWorldHint": True,
}
)
async def read_property(
host: str = settings.bacnet.host,
port: int = settings.bacnet.port,
obj: str = "analogValue",
instance: str = "1",
prop: str = "presentValue",
) -> str:
"""Reads the content of a BACnet object property on a remote unit."""
...
Write Properties
Write operations are exposed as a tool, accepting the same connection details (host, port) and allowing to set the content of an object property in a single, atomic call.
@mcp.tool(
annotations={
"title": "Write Property",
"readOnlyHint": False,
"openWorldHint": True,
}
)
async def write_property(
host: str = settings.bacnet.host,
port: int = settings.bacnet.port,
obj: str = "analogValue,1",
prop: str = "presentValue",
data: str = "1.0",
) -> str:
"""Writes a BACnet object property on a remote device."""
...
Authentication
To enable authentication using the built-in AuthKit provider for the Streamable HTTP transport, provide the AuthKit domain and redirect URL in the .env file. Check out the AuthKit Provider section for more details.
Interactive Prompts
Structured response messages are implemented using prompts that help guide the interaction, clarify missing parameters, and handle errors gracefully.
@mcp.prompt(name="bacnet_help", tags={"bacnet", "help"})
def bacnet_help() -> list[Message]:
"""Provides examples of how to use the BACnet MCP server."""
...
Here are some example text inputs that can be used to interact with the server.
Read the presentValue property of analogInput,1 at 10.0.0.4.
Fetch the units property of analogInput 2.
Write the value 42 to analogValue instance 1.
Set the presentValue of binaryOutput 3 to True.
Examples
The examples folder contains sample projects showing how to integrate with the BACnet MCP server using various client APIs to provide tools and context to LLMs.
- openai-agents - shows how to connect to the BACnet MCP server using the OpenAI Agents SDK.
- openai - a minimal app leveraging remote MCP server support in the OpenAI Python library.
- pydantic-ai - shows how to connect to the BACnet MCP server using the PydanticAI Agent Framework.
Docker
The BACnet MCP server can be deployed as a Docker container as follows:
docker run -d \
--name bacnet-mcp \
--restart=always \
-p 8080:8000 \
--env-file .env \
ghcr.io/ezhuk/bacnet-mcp:latest
This maps port 8080 on the host to the MCP server's port 8000 inside the container and loads settings from the .env file, if present.
License
The server is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bacnet_mcp-0.2.3.tar.gz.
File metadata
- Download URL: bacnet_mcp-0.2.3.tar.gz
- Upload date:
- Size: 151.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7642e842e873852b322198769e6300ddaeb11cfee93bc6ea82561838caaf3370
|
|
| MD5 |
467d34f6e4ad807a9579aa9d635c148f
|
|
| BLAKE2b-256 |
b1239b2c81856ab0cec7e638c75bb40ec13edb6cd79fea7ad70fb958fe4b82bd
|
Provenance
The following attestation bundles were made for bacnet_mcp-0.2.3.tar.gz:
Publisher:
pypi.yml on ezhuk/bacnet-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bacnet_mcp-0.2.3.tar.gz -
Subject digest:
7642e842e873852b322198769e6300ddaeb11cfee93bc6ea82561838caaf3370 - Sigstore transparency entry: 497684749
- Sigstore integration time:
-
Permalink:
ezhuk/bacnet-mcp@6580cd29e8f5b37aa18003663524d0d0fd59a06e -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/ezhuk
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@6580cd29e8f5b37aa18003663524d0d0fd59a06e -
Trigger Event:
release
-
Statement type:
File details
Details for the file bacnet_mcp-0.2.3-py3-none-any.whl.
File metadata
- Download URL: bacnet_mcp-0.2.3-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce5d96cb91f45a6f2a217b596e630041fae5ffec50ae757a17cefff4afd5ccc4
|
|
| MD5 |
288a901bf4cb55a147a190b9ad5aa0b6
|
|
| BLAKE2b-256 |
efcd9c1a478006935b8fa9d193b1daec08809256d8d4047096f4ea9484102a17
|
Provenance
The following attestation bundles were made for bacnet_mcp-0.2.3-py3-none-any.whl:
Publisher:
pypi.yml on ezhuk/bacnet-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bacnet_mcp-0.2.3-py3-none-any.whl -
Subject digest:
ce5d96cb91f45a6f2a217b596e630041fae5ffec50ae757a17cefff4afd5ccc4 - Sigstore transparency entry: 497684769
- Sigstore integration time:
-
Permalink:
ezhuk/bacnet-mcp@6580cd29e8f5b37aa18003663524d0d0fd59a06e -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/ezhuk
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@6580cd29e8f5b37aa18003663524d0d0fd59a06e -
Trigger Event:
release
-
Statement type: