Skip to content

Commit 39fcf3e

Browse files
chore: release mongodb-mcp-server v2.0.0 (#1404)
This PR bumps the package version to v2.0.0. Once merged, the new version will be published to npm. All [1 tickets](https://jira.mongodb.org/issues/?jql=project%20%3D%20MCP%20AND%20fixVersion%20%3D%2051912) in [vNext](https://jira.mongodb.org/projects/MCP/versions/51912) are in resolved state. Co-authored-by: mongodb-devtools-bot[bot] <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com>
1 parent 1f49971 commit 39fcf3e

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

deploy/azure/bicep/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ param containerAppEnvironmentName string = ''
88
param containerAppName string = 'mongo-mcp-server-app'
99

1010
@description('Docker image to deploy')
11-
param containerImage string = 'mongodb/mongodb-mcp-server:1.15.0-alpha.11'
11+
param containerImage string = 'mongodb/mongodb-mcp-server:2.0.0'
1212

1313
@description('Container CPU (vCPU) as string. Allowed: 0.25 - 2.0 in 0.25 increments')
1414
@allowed([

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mongodb-mcp-server",
33
"description": "MongoDB Model Context Protocol Server",
4-
"version": "1.15.0-alpha.11",
4+
"version": "2.0.0",
55
"type": "module",
66
"packageManager": "pnpm@11.5.1",
77
"mcpName": "io.github.mongodb-js/mongodb-mcp-server",

packages/metrics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mongodb-js/mcp-metrics",
33
"description": "Prometheus metrics helpers for MongoDB MCP servers",
4-
"version": "1.15.0-alpha.11",
4+
"version": "2.0.0",
55
"type": "module",
66
"license": "Apache-2.0",
77
"author": "MongoDB <info@mongodb.com>",

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mongodb-js/mcp-types",
33
"description": "Shared TypeScript types and interfaces for MongoDB MCP server packages",
4-
"version": "1.15.0-alpha.11",
4+
"version": "2.0.0",
55
"type": "module",
66
"license": "Apache-2.0",
77
"author": "MongoDB <info@mongodb.com>",

packaging/mcpb/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.1",
33
"name": "mongodb-mcp-server",
44
"display_name": "MongoDB",
5-
"version": "1.15.0-alpha.11",
5+
"version": "2.0.0",
66
"description": "Official MongoDB desktop extension (MCP Server). Connect to databases, explore data, manage collections, optimize queries, generate reliable code, implement best practices, develop advanced features, and more.",
77
"long_description": "Connect Claude Desktop to MongoDB Atlas and self-managed MongoDB deployments.\n\nManage your Atlas resources — clusters, projects, network access, and database users — directly from Claude. Query and inspect your data using find and aggregation, explore schemas, and manage indexes. Spin up local Atlas environments via Docker with Atlas Local, and add semantic search to your workflows using Vector Search with Voyage AI embeddings.\n\nFull documentation at [mongodb.com/docs/mcp-server](https://www.mongodb.com/docs/mcp-server/).",
88
"author": {

server.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"url": "https://github.com/mongodb-js/mongodb-mcp-server",
77
"source": "github"
88
},
9-
"version": "1.15.0-alpha.11",
9+
"version": "2.0.0",
1010
"packages": [
1111
{
1212
"registryType": "npm",
1313
"identifier": "mongodb-mcp-server",
14-
"version": "1.15.0-alpha.11",
14+
"version": "2.0.0",
1515
"transport": {
1616
"type": "stdio"
1717
},
@@ -589,7 +589,7 @@
589589
},
590590
{
591591
"registryType": "oci",
592-
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.15.0-alpha.5",
592+
"identifier": "docker.io/mongodb/mongodb-mcp-server:2.0.0",
593593
"transport": {
594594
"type": "stdio"
595595
},

src/common/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const packageInfo: {
44
mcpServerName: string;
55
engines: { node: string };
66
} = {
7-
version: "1.15.0-alpha.11",
7+
version: "2.0.0",
88
mcpServerName: "MongoDB MCP Server",
99
engines: {
1010
node: "^20.19.0 || ^22.13.0 || >= 24.0.0",

src/ui/lib/tools/list-databases.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)