Skip to content

Commit cdbf32d

Browse files
committed
chore: rename to mongodb-mcp-server
1 parent 5c43a16 commit cdbf32d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
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
}
@@ -226,7 +226,7 @@ export MDB_MCP_LOG_PATH="/path/to/logs"
226226
Pass configuration options as command-line arguments when starting the server:
227227

228228
```shell
229-
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
229+
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
230230
```
231231

232232
## 🤝 Contributing

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
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)