Revit Converter Remote Mcp

Created By
labsfuture20 days ago
The Revit Converter MCP is a remote MCP server that connects Claude (or any MCP-compatible AI client) directly to a Revit file conversion and BIM query service. Once configured, you can: List and manage models on the server Upload your .rvt files by a public URL Convert Revit models to XKT format for web-based 3D viewing Query BIM data in natural language — counts, element types, properties Inspect individual element metadata (materials, dimensions, thermal values, etc.) No plugins, no Revit installation needed on the client side.
Overview

Getting Started Step 1 — Get an API Key Sign up at labsfuture.com and navigate to your account dashboard.

Generate Demo Key — free tier, includes 5 real Revit conversions to try the service Generate API Key — for production / unlimited use Get API Key

Demo keys start with dk_. Full API keys start with sk_.

Step 2 — Configure Claude Desktop Open your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json Add the following entry under mcpServers:

{ "mcpServers": { "revit-converter": { "command": "npx", "args": [ "-y", "mcp-remote", "https://labsaps-d35810f00db3.herokuapp.com/mcp", "--header", "Authorization: Bearer labsfuture.comFreeDemo_MCPKey" ] } } } Replace the Bearer token with your own key from labsfuture.com. The key above is a shared demo key — get your own for personal model storage and full conversions.

MCP Config

Requires Node.js — npx must be available in your PATH. Install from nodejs.org if needed.

Step 3 — Restart Claude Desktop After saving the config, restart Claude Desktop. Open Settings → Connectors and you should see revit-converter listed with 7 tools available.

Claude After Config

Usage Examples Once connected, just talk to Claude naturally:

Upload a model

Could you upload this model to the revit converter server? https://www.dropbox.com/scl/fi/yourfile.rvt?dl=0 Upload Model

List models on the server

Lists all models on the server by name List Models

Convert to XKT and view in browser

yes, convert rac_basic_sample_project.rvt to xkt Convert to XKT

Claude returns a direct viewer link — open it to see your model rendered in 3D:

View XKT

Query BIM data

how many walls in this model? Query Walls

Inspect element properties

yes, just show me properties of a random wall Element Data

About Labs Future LabsFuture builds AI-native tools for the AEC industry. The Revit Converter MCP is part of a broader platform that brings BIM workflows into the age of conversational AI — letting architects, engineers, and developers interact with building data through natural language.

Visit www.labsfuture.com to:

Sign up and get your API key Access the 3D web viewer Learn about full platform features Requirements Claude Desktop (or any MCP-compatible client) Node.js (for npx mcp-remote) A Labs Future account with an API key License See LICENSE for details.

Server Config

{
  "mcpServers": {
    "revit-converter": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://labsaps-d35810f00db3.herokuapp.com/mcp",
        "--header",
        "Authorization: Bearer labsfuture.comFreeDemo_MCPKey"
      ]
    }
  }
}
Project Info
Created At
20 days ago
Updated At
20 days ago
Author Name
labsfuture
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Mnemom

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Docwand

13 hours ago