Skip to content

Commit 497892a

Browse files
chore: release mongodb-mcp-server v1.11.0-prerelease.3 (#1175)
Co-authored-by: mongodb-devtools-bot[bot] <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com>
1 parent ef14740 commit 497892a

7 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,7 @@ For more information about configuring OpenCode as an MCP client, including the
378378
- `atlas-streams-discover` - Discover and inspect Atlas Stream Processing resources. Also use for 'why is my processor failing', 'what workspaces do I have', 'show processor stats', or 'check processor health'. Use 'list-workspaces' to see all workspaces in a project. Use inspect actions for details on a specific resource. Use 'diagnose-processor' for a combined health report including state, stats, connection health, and recent errors. Use 'get-networking' for PrivateLink and account details.
379379
- `atlas-streams-manage` - Manage Atlas Stream Processing resources: start/stop processors, modify pipelines, update configurations. Also use for 'change the pipeline', 'scale up my processor', or 'update my workspace tier'. Common workflow: action='stop-processor' → action='modify-processor' → action='start-processor'. Use `atlas-streams-discover` with action 'inspect-processor' to check state before managing.
380380
- `atlas-streams-teardown` - Delete Atlas Stream Processing resources. Also use for 'remove my workspace', 'disconnect a source', 'delete all processors', or 'clean up my streams environment'. Performs basic safety checks before deletion: summarizes counts of processors and connections, highlights connections referenced by processors where possible, and surfaces API errors if processors are still running when deletion is attempted. Use `atlas-streams-discover` to review resources before deleting.
381+
- `atlas-upgrade-cluster` - Upgrade a MongoDB Atlas cluster tier. Upgrades Free (M0) clusters to Flex or M10 Dedicated, or Flex clusters to M10 Dedicated. The upgrade path is determined automatically from the current tier unless overridden with targetTier.
381382

382383
NOTE: atlas tools are only available when you set credentials on [configuration](#configuration) section.
383384

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.11.0-prerelease.2",
4+
"version": "1.11.0-prerelease.3",
55
"type": "module",
66
"packageManager": "pnpm@10.33.2",
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.11.0-prerelease.2",
4+
"version": "1.11.0-prerelease.3",
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.11.0-prerelease.2",
4+
"version": "1.11.0-prerelease.3",
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.11.0-prerelease.1",
5+
"version": "1.11.0-prerelease.3",
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.11.0-prerelease.2",
9+
"version": "1.11.0-prerelease.3",
1010
"packages": [
1111
{
1212
"registryType": "npm",
1313
"identifier": "mongodb-mcp-server",
14-
"version": "1.11.0-prerelease.2",
14+
"version": "1.11.0-prerelease.3",
1515
"transport": {
1616
"type": "stdio"
1717
},
@@ -520,7 +520,7 @@
520520
},
521521
{
522522
"registryType": "oci",
523-
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.11.0-prerelease.2",
523+
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.11.0-prerelease.3",
524524
"transport": {
525525
"type": "stdio"
526526
},

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.11.0-prerelease.2",
7+
version: "1.11.0-prerelease.3",
88
mcpServerName: "MongoDB MCP Server",
99
engines: {
1010
node: "^20.19.0 || ^22.12.0 || >= 24.0.0",

0 commit comments

Comments
 (0)