Skip to content

Commit f86b015

Browse files
anatoly314claude
andcommitted
Update repository references from drawdb to drawdb-mcp
- Updated git clone URL and repository references - Changed Docker image names and container names - Removed old DrawDB social links (docs, discord, twitter) - Updated CLI help text with new repository URL - Removed reference to sharing server feature 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent f41eeb0 commit f86b015

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ The easiest way to get started is using Docker:
2525

2626
```bash
2727
docker run \
28-
--name drawdb \
28+
--name drawdb-mcp \
2929
-p 8080:80 \
3030
-p 3000:3000 \
3131
--restart unless-stopped \
32-
ghcr.io/anatoly314/drawdb:latest
32+
ghcr.io/anatoly314/drawdb-mcp:latest
3333
```
3434

3535
Then:
@@ -55,8 +55,8 @@ See [GHCR_DEPLOYMENT.md](./docs/GHCR_DEPLOYMENT.md) for available tags and advan
5555
**Start both GUI and backend:**
5656

5757
```bash
58-
git clone https://github.com/drawdb-io/drawdb
59-
cd drawdb
58+
git clone https://github.com/anatoly314/drawdb-mcp
59+
cd drawdb-mcp
6060
pnpm install
6161
pnpm dev
6262
```
@@ -115,10 +115,8 @@ docker-compose up --build
115115
**Or build directly:**
116116

117117
```bash
118-
docker build -t drawdb:local .
119-
docker run -p 8080:80 -p 3000:3000 drawdb:local
118+
docker build -t drawdb-mcp:local .
119+
docker run -p 8080:80 -p 3000:3000 drawdb-mcp:local
120120
```
121121

122122
The Docker image includes both frontend and backend. WebSocket is proxied through Nginx.
123-
124-
If you want to enable sharing, set up the [server](https://github.com/drawdb-io/drawdb-server) and environment variables according to `.env.sample`. This is optional unless you need to share files.

apps/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
"repository": {
7171
"type": "git",
72-
"url": "https://github.com/drawdb-io/drawdb.git"
72+
"url": "https://github.com/anatoly314/drawdb-mcp.git"
7373
},
7474
"keywords": [
7575
"mcp",

apps/backend/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ WebSocket Endpoint:
4949
MCP Endpoint:
5050
The MCP protocol endpoint is available at /mcp
5151
52-
For more information, visit: https://github.com/drawdb-io/drawdb
52+
For more information, visit: https://github.com/anatoly314/drawdb-mcp
5353
`,
5454
)
5555
.parse();

apps/gui/src/data/socials.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
export const socials = {
2-
docs: "https://drawdb-io.github.io/docs",
3-
discord: "https://discord.gg/BrjZgNrmR6",
4-
twitter: "https://x.com/drawDB_",
5-
github: "https://github.com/drawdb-io/drawdb",
2+
github: "https://github.com/anatoly314/drawdb-mcp",
63
};

0 commit comments

Comments
 (0)