Skip to content

Commit 543a5db

Browse files
authored
chore: rename to mongodb-mcp-server (#97)
1 parent 0584f38 commit 543a5db

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Atlas MCP Server
1+
# MongoDB MCP Server
22

33
A Model Context Protocol server for interacting with MongoDB Atlas. This project implements a Model Context Protocol (MCP) server enabling AI assistants to interact with MongoDB Atlas resources through natural language.
44

@@ -40,7 +40,7 @@ Step 1: Add the mcp server to VSCode configuration
4040

4141
- Press `Cmd + Shift + P` and type `MCP: Add MCP Server` and select it.
4242
- Select command (Stdio).
43-
- Input command `npx -y @mongodb-js/mongodb-mcp-server`.
43+
- Input command `npx -y mongodb-mcp-server`.
4444
- Choose between user / workspace
4545
- Add arguments to the file
4646

@@ -54,7 +54,7 @@ Note: the file should look like:
5454
"command": "npx",
5555
"args": [
5656
"-y",
57-
"@mongodb-js/mongodb-mcp-server"
57+
"mongodb-mcp-server"
5858
]
5959
}
6060
}
@@ -82,7 +82,7 @@ Paste the mcp server configuration into the file
8282
"mcpServers": {
8383
"MongoDB": {
8484
"command": "npx",
85-
"args": ["-y", "@mongodb-js/mongodb-mcp-server"]
85+
"args": ["-y", "mongodb-mcp-server"]
8686
}
8787
}
8888
}
@@ -228,7 +228,7 @@ export MDB_MCP_LOG_PATH="/path/to/logs"
228228
Pass configuration options as command-line arguments when starting the server:
229229

230230
```shell
231-
npx -y @mongodb-js/mongodb-mcp-server --apiClientId="your-atlas-client-id" --apiClientSecret="your-atlas-client-secret" --connectionString="mongodb+srv://username:[email protected]/myDatabase" --logPath=/path/to/logs
231+
npx -y mongodb-mcp-server --apiClientId="your-atlas-client-id" --apiClientSecret="your-atlas-client-secret" --connectionString="mongodb+srv://username:[email protected]/myDatabase" --logPath=/path/to/logs
232232
```
233233

234234
## 🤝 Contributing

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@mongodb-js/mongodb-mcp-server",
2+
"name": "mongodb-mcp-server",
33
"description": "MongoDB Model Context Protocol Server",
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"main": "dist/index.js",
66
"author": "MongoDB <[email protected]>",
77
"homepage": "https://github.com/mongodb-js/mongodb-mcp-server",

0 commit comments

Comments
 (0)