@rui.branco/revit-mcp 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -18,32 +18,47 @@ Claude Code route uses `npx`, so it wants Node 18+.
|
|
|
18
18
|
|
|
19
19
|
### 1. Register the server
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
Two commands, in **Claude Code or Claude Desktop** — same plugin, either app:
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
```
|
|
24
|
+
/plugin marketplace add rui-branco/revit-mcp
|
|
25
|
+
/plugin install revit@revit-tools
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
That is the whole step. The plugin updates itself from this repo, so there is
|
|
29
|
+
nothing to re-download when a new version ships; `/plugin update` pulls it
|
|
30
|
+
early if you do not want to wait.
|
|
25
31
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
3. **Drag `revit-mcp.mcpb` onto the window** (or use **Advanced settings →
|
|
29
|
-
Install extension…** and pick the file)
|
|
30
|
-
4. Press **Install**
|
|
32
|
+
<details>
|
|
33
|
+
<summary><b>Other ways to install</b></summary>
|
|
31
34
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
to be installed**. Bridge URL and request timeout appear under **Settings →
|
|
35
|
-
Extensions → Revit**.
|
|
35
|
+
These exist for completeness. The plugin above is the supported path, and the
|
|
36
|
+
only one that updates on its own.
|
|
36
37
|
|
|
37
|
-
|
|
38
|
-
> `.mcpb` file type. Many installs have not, so prefer the drag-and-drop or
|
|
39
|
-
> **Install extension…** route above.
|
|
38
|
+
**Claude Code, without the plugin**
|
|
40
39
|
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
```bash
|
|
41
|
+
claude mcp add revit --scope user -- npx -y @rui.branco/revit-mcp
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
`--scope user` enables it in every project; `--scope project` writes it to the
|
|
45
|
+
repo's `.mcp.json` instead, to share with a team.
|
|
46
|
+
|
|
47
|
+
**Claude Desktop, as a Desktop Extension (.mcpb)**
|
|
48
|
+
|
|
49
|
+
[Download `revit-mcp.mcpb`](https://github.com/rui-branco/revit-mcp/releases/latest/download/revit-mcp.mcpb),
|
|
50
|
+
then **Settings → Extensions → Advanced settings → Install extension…** and
|
|
51
|
+
pick the file. It bundles the server, its dependencies and the Revit add-in,
|
|
52
|
+
and runs on Claude Desktop's built-in Node runtime, so neither Node.js nor npm
|
|
53
|
+
is needed. **A sideloaded extension never auto-updates** — every new version
|
|
54
|
+
means downloading and installing the file again, which is why the plugin is
|
|
55
|
+
preferred.
|
|
43
56
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
57
|
+
**Claude Desktop, by hand**
|
|
58
|
+
|
|
59
|
+
**Settings → Developer → Edit Config** opens
|
|
60
|
+
`%APPDATA%\Claude\claude_desktop_config.json`. Add the `revit` entry, keeping
|
|
61
|
+
any servers already there:
|
|
47
62
|
|
|
48
63
|
```json
|
|
49
64
|
{
|
|
@@ -56,31 +71,16 @@ keeping any servers already there:
|
|
|
56
71
|
}
|
|
57
72
|
```
|
|
58
73
|
|
|
59
|
-
Then
|
|
60
|
-
enough — and reopen it.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
`PATH`. Use absolute paths instead (`where.exe npx.cmd` prints yours), or point
|
|
64
|
-
`command` at your `node.exe` with `args` of
|
|
65
|
-
`["C:\\path\\to\\revit-mcp\\index.js"]`.
|
|
66
|
-
|
|
67
|
-
</details>
|
|
68
|
-
|
|
69
|
-
#### Claude Code — one command
|
|
70
|
-
|
|
71
|
-
```bash
|
|
72
|
-
claude mcp add revit --scope user -- npx -y @rui.branco/revit-mcp
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
`--scope user` enables it in every project; `--scope project` writes it to the
|
|
76
|
-
repo's `.mcp.json` instead, to share with a team. Check it with `claude mcp list`.
|
|
74
|
+
Then quit Claude Desktop from the system tray — closing the window is not
|
|
75
|
+
enough — and reopen it. If the server shows as failed, Claude Desktop could not
|
|
76
|
+
find `npx` on its `PATH`: use an absolute path (`where.exe npx.cmd` prints
|
|
77
|
+
yours).
|
|
77
78
|
|
|
78
|
-
|
|
79
|
-
<summary><b>Other MCP clients</b></summary>
|
|
79
|
+
**Any other MCP client**
|
|
80
80
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
Run `npx -y @rui.branco/revit-mcp` as the server command. It takes no
|
|
82
|
+
arguments and needs no environment beyond the optional
|
|
83
|
+
[configuration](#configuration).
|
|
84
84
|
|
|
85
85
|
</details>
|
|
86
86
|
|
package/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": "0.2",
|
|
3
3
|
"name": "revit-mcp",
|
|
4
4
|
"display_name": "Revit",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.2",
|
|
6
6
|
"description": "Query and edit the Autodesk Revit model open on your desktop.",
|
|
7
7
|
"long_description": "Connects Claude to the Revit model currently open on this Windows machine through a bundled C# bridge add-in. Query levels and elements, read and write parameters, model geometry, and produce a full drawing set: sheets, views, schedules and PDF exports. Requires Autodesk Revit 2025, 2026 or 2027, and a one-time bridge install run from inside Claude.",
|
|
8
8
|
"author": {
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|