Thank you for your interest in contributing to the MongoDB MCP Server project! This document provides guidelines and instructions for contributing.
This project implements a Model Context Protocol (MCP) server for MongoDB and MongoDB Atlas, enabling AI assistants to interact with MongoDB Atlas resources through natural language.
- Node.js (v20 or later)
- pnpm
-
Clone the repository:
git clone https://github.com/mongodb-labs/mongodb-mcp-server.git cd mongodb-mcp-server -
Install dependencies:
pnpm install -
Add the mcp server to your IDE of choice (see the README for detailed client integration instructions)
{ "mcpServers": { "MongoDB": { "command": "/path/to/mongodb-mcp-server/dist/esm/index.js" } } }
-
Create a new branch for your feature or bugfix:
git checkout -b feature/your-feature-name -
Make your changes, following the code style of the project
-
Run the inspector and double check your changes:
pnpm run inspect -
Commit your changes using conventional commits format.
When adding new features or fixing bugs, please ensure that you also add tests to cover your changes. This helps maintain the quality and reliability of the codebase.
The tests can be found in the tests directory.
You can run tests using the following pnpm scripts:
pnpm test: Run all tests
To run a specific test file or directory:
pnpm test path/to/test/file.test.ts
pnpm test path/to/directoryIf you use colima to run Docker on Mac, you will need to apply additional configuration to ensure the accuracy tests run correctly.
- Run
pnpm run buildto re-build the server if you made changes to the code - Press
Cmd + Shift + Pand type List MCP Servers - Select the MCP server you want to restart
- Select the option to restart the server
To see MCP logs, check https://code.visualstudio.com/docs/copilot/chat/mcp-servers.
- Press
Cmd + Shift + Pand type List MCP Servers - Select the MCP server you want to see logs for
- Select the option to view logs in the output panel
For debugging, we use the MCP inspector tool. From the root of this repository, run:
pnpm run inspectThis is equivalent to:
npx @modelcontextprotocol/inspector -- node dist/esm/index.js- Update documentation if necessary
- Ensure your PR includes only relevant changes
- Link any related issues in your PR description
- Keep PRs focused on a single topic
- Use TypeScript for all new code
- Follow the existing code style (indentation, naming conventions, etc.)
- Comment your code when necessary, especially for complex logic
- Use meaningful variable and function names
When reporting issues, please include:
- A clear description of the problem
- Steps to reproduce
- Expected vs. actual behavior
- Version information
- Environment details
When adding new tools to the MCP server:
- Follow the existing pattern in
server.ts - Define clear parameter schemas using Zod
- Implement thorough error handling
- Add proper documentation for the tool
- Include examples of how to use the tool
To release a new version of the MCP server, follow these steps:
-
Ensure there is a Jira Release ticket in the
MCPproject for the new release and move it to In Progress. -
Verify that the Jira tickets you expect to be released are correctly mapped to the expected Release version. Add any additional required documentation to the release ticket.
-
To create a new version, go to the GitHub repository Actions tab and run the "Prepare Release" workflow with one of the following options:
patch(e.g., 1.0.0 → 1.0.1) for backward-compatible bug fixesminor(e.g., 1.0.0 → 1.1.0) for backward-compatible new featuresmajor(e.g., 1.0.0 → 2.0.0) for breaking changes- A specific version number (e.g.,
1.2.3) - Pre-release versions: To create a pre-release, enter the version suffixed by
-prerelease.{n}wherenis the pre-release number (e.g.,1.1.0-prerelease.1,1.1.0-prerelease.2). Pre-releases are release candidates that provide early access to new features before they are promoted to stable.
Note: Stable releases are published under the
latesttag on NPM and are intended for production use. Pre-release versions are published under theprereleasetag and serve as release candidates for early access and feedback before being released as stable versions. -
This creates a pull request with the version change.
-
Merge this pull request if all looks correct. This will trigger the "Publish" workflow which will publish it to NPM, Docker and the MCP Registry.
-
Verify that the new version is published correctly by checking:
- NPM: https://www.npmjs.com/package/mongodb-mcp-server
- Docker: https://hub.docker.com/r/mongodb/mongodb-mcp-server
- MCP Registry:
curl "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.mongodb-js%2Fmongodb-mcp-server/versions/latest"
-
Close the Jira ticket for the release.
-
Go to the Releases section the and rename the
vNextto the new version number and mark it as Released. Create a newvNextfor the next release. -
Post an update in the
#mongodb-mcpSlack channel.
All pull requests automatically run through the "Code Health" workflow, which:
- Verifies code style and formatting
- Runs tests on multiple platforms (Ubuntu, macOS, Windows)
By contributing to this project, you agree that your contributions will be licensed under the project's license.
If you have any questions or need help, please open an issue or reach out to the maintainers.