diff --git a/marketplace-revision-release.json b/marketplace-revision-release.json index 5ae09a3..8d1b6c3 100644 --- a/marketplace-revision-release.json +++ b/marketplace-revision-release.json @@ -31,7 +31,41 @@ "Name": "Brave Search MCP Usage Instructions" } ], - "ContainerImages": "" + "ContainerImages": "", + "EnvironmentVariables": [ + { + "Name": "BRAVE_API_KEY", + "Description": "*Required* Brave Search API Key. Obtain Brave Search API Key through AWS Marketplace Product (https://aws.amazon.com/marketplace/pp/prodview-qjlabherxghtq)" + }, + { + "DefaultValue": "http", + "Name": "BRAVE_MCP_TRANSPORT", + "Description": "MCP protocol transport mode. Supported values are \"http\" or \"stdio\", however Bedrock Agentcore only supports \"http\" (reference https://docs.aws.amazon.com/marketplace/latest/userguide/bedrock-agentcore-runtime.html#agentcore-container-requirements)." + }, + { + "DefaultValue": "8080", + "Name": "BRAVE_MCP_PORT", + "Description": "HTTP server port (default: 8080). Mandatory port for Bedrock Agentcore is 8080 (reference https://docs.aws.amazon.com/marketplace/latest/userguide/bedrock-agentcore-runtime.html#agentcore-container-requirements)." + }, + { + "DefaultValue": "0.0.0.0", + "Name": "BRAVE_MCP_HOST", + "Description": "HTTP server host (default: 0.0.0.0). Mandatory host value is 0.0.0.0 for Bedrock Agentcore (reference https://docs.aws.amazon.com/marketplace/latest/userguide/bedrock-agentcore-runtime.html#agentcore-container-requirements)." + }, + { + "DefaultValue": "info", + "Name": "BRAVE_MCP_LOG_LEVEL", + "Description": "MCP supported logging level (reference https://modelcontextprotocol.io/specification/2025-03-26/server/utilities/logging#log-levels)" + }, + { + "Name": "BRAVE_MCP_ENABLED_TOOLS", + "Description": "*Optional* When used, specifies a whitelist for supported tools" + }, + { + "Name": "BRAVE_MCP_DISABLED_TOOLS", + "Description": "*Optional* When used, specifies a blacklist for supported tools" + } + ] } } }, diff --git a/package-lock.json b/package-lock.json index 0998ffb..7bf2993 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@brave/brave-search-mcp-server", - "version": "2.0.66", + "version": "2.0.67", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@brave/brave-search-mcp-server", - "version": "2.0.66", + "version": "2.0.67", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "1.25.2", @@ -2567,9 +2567,9 @@ } }, "node_modules/hono": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/hono/-/hono-4.11.3.tgz", - "integrity": "sha512-PmQi306+M/ct/m5s66Hrg+adPnkD5jiO6IjA7WhWw0gSBSo1EcRegwuI1deZ+wd5pzCGynCcn2DprnE4/yEV4w==", + "version": "4.11.4", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.11.4.tgz", + "integrity": "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==", "license": "MIT", "peer": true, "engines": { diff --git a/package.json b/package.json index fcb01d3..5ad3ea9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@brave/brave-search-mcp-server", "mcpName": "io.github.brave/brave-search-mcp-server", - "version": "2.0.66", + "version": "2.0.67", "description": "Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.", "keywords": [ "api", diff --git a/server.json b/server.json index 855d1cc..406c80c 100644 --- a/server.json +++ b/server.json @@ -2,7 +2,7 @@ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", "name": "io.github.brave/brave-search-mcp-server", "description": "Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.", - "version": "2.0.66", + "version": "2.0.67", "repository": { "url": "https://github.com/brave/brave-search-mcp-server", "source": "github" @@ -12,7 +12,7 @@ "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "@brave/brave-search-mcp-server", - "version": "2.0.66", + "version": "2.0.67", "transport": { "type": "stdio" },