Tacit MCP
Connects AI assistants to Tacit building digital twins to query buildings, equipment, sensors, and zones using natural language. It provides tools for exploring Brick-compliant knowledge graphs, fetching historical sensor data, and accessing site documents.
README
tacit-mcp
MCP server that connects AI assistants to Tacit building digital twins. Ask questions about your buildings, equipment, sensors, and zones in natural language.
Works with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible client.
What it does
Four read-only tools:
| Tool | Purpose |
|---|---|
tacit_list_sites |
List buildings your API key can access |
tacit_graphql |
Query the building knowledge graph (Brick-compliant) |
tacit_timeseries |
Fetch historical sensor data |
tacit_list_files |
List documents and files for a site |
The GraphQL tool includes the full schema reference, so the AI model can compose queries without needing separate documentation.
Quick start
git clone https://github.com/ucl-sbde/tacit-mcp.git
cd tacit-mcp
npm install
npm run build
You'll need a Tacit API key. Get one from your dashboard at app.betacit.com under Site Settings > API Keys.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"tacit": {
"command": "node",
"args": ["/path/to/tacit-mcp/dist/index.js"],
"env": {
"TACIT_API_KEY": "your-api-key"
}
}
}
}
Claude Code
Add to .mcp.json in your project:
{
"mcpServers": {
"tacit": {
"command": "node",
"args": ["/path/to/tacit-mcp/dist/index.js"],
"env": {
"TACIT_API_KEY": "your-api-key"
}
}
}
}
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"tacit": {
"command": "node",
"args": ["/path/to/tacit-mcp/dist/index.js"],
"env": {
"TACIT_API_KEY": "your-api-key"
}
}
}
}
Try it
Once connected, ask your AI assistant things like:
- "List all my building sites"
- "What AHUs are in Tower West?"
- "Show me temperature sensors on AHU-001"
- "Get the last 24 hours of supply air temperature data"
- "What equipment feeds the lobby zone?"
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
TACIT_API_KEY |
Yes | Your Tacit API key | |
TACIT_API_URL |
No | https://app.betacit.com |
API base URL (for self-hosted deployments) |
Development
npm run dev # watch mode with tsx
npm run build # compile TypeScript
npm start # run compiled output
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.