Skip to content

Commit d7b950d

Browse files
committed
refactor: Rename @cityjson/cj-mcp/server and @cityjson/cj-mcp/spec-converter packages, updating all references and the server's binary
1 parent d71076c commit d7b950d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ https://cj-mcp-264879243442.europe-west4.run.app/mcp
2323
Run locally using npx:
2424

2525
```bash
26-
npx @cityjson/cj-mcp/server
26+
npx @cityjson/cj-mcp
2727
```
2828

2929
Or install globally:
3030

3131
```bash
32-
npm install -g @cityjson/cj-mcp/server
32+
npm install -g @cityjson/cj-mcp
3333
cityjson-spec-mcp
3434
```
3535

@@ -45,7 +45,7 @@ Add to `~/.cursor/mcp.json`:
4545
"mcpServers": {
4646
"cityjson-spec": {
4747
"command": "npx",
48-
"args": ["-y", "@cityjson/cj-mcp/server"]
48+
"args": ["-y", "@cityjson/cj-mcp"]
4949
}
5050
}
5151
}
@@ -63,7 +63,7 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
6363
"mcpServers": {
6464
"cityjson-spec": {
6565
"command": "npx",
66-
"args": ["-y", "@cityjson/cj-mcp/server"]
66+
"args": ["-y", "@cityjson/cj-mcp"]
6767
}
6868
}
6969
}
@@ -83,7 +83,7 @@ Add to your VS Code settings:
8383
"cityjson-spec": {
8484
"type": "stdio",
8585
"command": "npx",
86-
"args": ["-y", "@cityjson/cj-mcp/server"]
86+
"args": ["-y", "@cityjson/cj-mcp"]
8787
}
8888
}
8989
}
@@ -102,7 +102,7 @@ Add to your Windsurf MCP config:
102102
"mcpServers": {
103103
"cityjson-spec": {
104104
"command": "npx",
105-
"args": ["-y", "@cityjson/cj-mcp/server"]
105+
"args": ["-y", "@cityjson/cj-mcp"]
106106
}
107107
}
108108
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"lint": "biome check .",
1111
"lint:fix": "biome check --write .",
1212
"format": "biome format --write .",
13-
"convert-spec": "pnpm --filter @cityjson/cj-mcp/spec-converter run convert",
14-
"start:stdio": "pnpm --filter @cityjson/cj-mcp/server run start:stdio",
15-
"start:http": "pnpm --filter @cityjson/cj-mcp/server run start:http",
13+
"convert-spec": "pnpm --filter @cityjson/spec-converter run convert",
14+
"start:stdio": "pnpm --filter @cityjson/cj-mcp run start:stdio",
15+
"start:http": "pnpm --filter @cityjson/cj-mcp run start:http",
1616
"prepare": "husky"
1717
},
1818
"keywords": ["mcp", "cityjson", "model-context-protocol", "3d-city-models", "specification"],

packages/mcp-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "@cityjson/cj-mcp/server",
2+
"name": "@cityjson/cj-mcp",
33
"version": "0.1.0",
44
"type": "module",
55
"main": "dist/index.js",
66
"bin": {
7-
"cityjson-spec-mcp": "dist/index.js"
7+
"cj-mcp": "dist/index.js"
88
},
99
"scripts": {
1010
"build": "vite build",

packages/spec-converter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@cityjson/cj-mcp/spec-converter",
2+
"name": "@cityjson/spec-converter",
33
"version": "0.1.0",
44
"type": "module",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)