Skip to content

chore: rename to mongodb-mcp-server #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Atlas MCP Server
# MongoDB MCP Server

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.

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

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

Expand All @@ -54,7 +54,7 @@ Note: the file should look like:
"command": "npx",
"args": [
"-y",
"@mongodb-js/mongodb-mcp-server"
"mongodb-mcp-server"
]
}
}
Expand Down Expand Up @@ -82,7 +82,7 @@ Paste the mcp server configuration into the file
"mcpServers": {
"MongoDB": {
"command": "npx",
"args": ["-y", "@mongodb-js/mongodb-mcp-server"]
"args": ["-y", "mongodb-mcp-server"]
}
}
}
Expand Down Expand Up @@ -226,7 +226,7 @@ export MDB_MCP_LOG_PATH="/path/to/logs"
Pass configuration options as command-line arguments when starting the server:

```shell
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
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
```

## 🤝 Contributing
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mongodb-js/mongodb-mcp-server",
"name": "mongodb-mcp-server",
"description": "MongoDB Model Context Protocol Server",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/index.js",
"author": "MongoDB <[email protected]>",
"homepage": "https://github.com/mongodb-js/mongodb-mcp-server",
Expand Down
Loading