Skip to content
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
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mongodb-mcp-server",
"description": "MongoDB Model Context Protocol Server",
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"mcpName": "io.github.mongodb-js/mongodb-mcp-server",
"exports": {
Expand Down
24 changes: 12 additions & 12 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"url": "https://github.com/mongodb-js/mongodb-mcp-server",
"source": "github"
},
"version": "1.1.0",
"version": "1.2.0",
"packages": [
{
"registryType": "npm",
"identifier": "mongodb-mcp-server",
"version": "1.1.0",
"version": "1.2.0",
"transport": {
"type": "stdio"
},
Expand Down Expand Up @@ -88,14 +88,14 @@
},
{
"name": "MDB_MCP_HTTP_HOST",
"description": "Host to bind the http server.",
"description": "Host address to bind the HTTP server to (only used when transport is 'http').",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "MDB_MCP_HTTP_PORT",
"description": "Port number.",
"description": "Port number for the HTTP server (only used when transport is 'http').",
"isRequired": false,
"format": "string",
"isSecret": false
Expand Down Expand Up @@ -243,13 +243,13 @@
{
"type": "named",
"name": "--httpHost",
"description": "Host to bind the http server.",
"description": "Host address to bind the HTTP server to (only used when transport is 'http').",
"isRequired": false
},
{
"type": "named",
"name": "--httpPort",
"description": "Port number.",
"description": "Port number for the HTTP server (only used when transport is 'http').",
"isRequired": false
},
{
Expand Down Expand Up @@ -326,7 +326,7 @@
},
{
"registryType": "oci",
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.1.0",
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.2.0",
"transport": {
"type": "stdio"
},
Expand Down Expand Up @@ -403,14 +403,14 @@
},
{
"name": "MDB_MCP_HTTP_HOST",
"description": "Host to bind the http server.",
"description": "Host address to bind the HTTP server to (only used when transport is 'http').",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "MDB_MCP_HTTP_PORT",
"description": "Port number.",
"description": "Port number for the HTTP server (only used when transport is 'http').",
"isRequired": false,
"format": "string",
"isSecret": false
Expand Down Expand Up @@ -558,13 +558,13 @@
{
"type": "named",
"name": "--httpHost",
"description": "Host to bind the http server.",
"description": "Host address to bind the HTTP server to (only used when transport is 'http').",
"isRequired": false
},
{
"type": "named",
"name": "--httpPort",
"description": "Port number.",
"description": "Port number for the HTTP server (only used when transport is 'http').",
"isRequired": false
},
{
Expand Down Expand Up @@ -638,7 +638,7 @@
"isRequired": false
}
],
"version": "1.1.0"
"version": "1.2.0"
}
]
}
2 changes: 1 addition & 1 deletion src/common/packageInfo.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This file was generated by scripts/updatePackageVersion.ts - Do not edit it manually.
export const packageInfo = {
version: "1.1.0",
version: "1.2.0",
mcpServerName: "MongoDB MCP Server",
};
Loading