diff --git a/README.md b/README.md index 3f420393..064daed3 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 @@ -54,7 +54,7 @@ Note: the file should look like: "command": "npx", "args": [ "-y", - "@mongodb-js/mongodb-mcp-server" + "mongodb-mcp-server" ] } } @@ -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"] } } } @@ -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:password@cluster.mongodb.net/myDatabase" --logPath=/path/to/logs +npx -y mongodb-mcp-server --apiClientId="your-atlas-client-id" --apiClientSecret="your-atlas-client-secret" --connectionString="mongodb+srv://username:password@cluster.mongodb.net/myDatabase" --logPath=/path/to/logs ``` ## 🤝 Contributing diff --git a/package-lock.json b/package-lock.json index 751318be..8b0e47a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@mongodb-js/mongodb-mcp-server", + "name": "mongodb-mcp-server", "version": "0.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@mongodb-js/mongodb-mcp-server", + "name": "mongodb-mcp-server", "version": "0.0.3", "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index ca9d20d0..c940a1a0 100644 --- a/package.json +++ b/package.json @@ -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 ", "homepage": "https://github.com/mongodb-js/mongodb-mcp-server",