manifest.json•1.84 kB
{
"dxt_version": "0.1",
"name": "brave-search-mcp",
"version": "0.8.0",
"description": "MCP Server that uses Brave Search API to search for images, general web search, video, news and points of interest.",
"author": {
"name": "Mike Chao",
"email": "mike.chao.one@gmail.com",
"url": "https://github.com/mikechao"
},
"homepage": "https://github.com/mikechao/brave-search-mcp",
"documentation": "https://github.com/mikechao/brave-search-mcp/blob/main/README.md",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
],
"env": {
"BRAVE_API_KEY": "${user_config.brave_api_key}"
}
}
},
"tools": [
{
"name": "brave_web_search",
"description": "Execute web searches using Brave's API"
},
{
"name": "brave_image_search",
"description": "Get images from the web relevant to the query"
},
{
"name": "brave_news_search",
"description": "Searches the web for news"
},
{
"name": "brave_local_search",
"description": "Search for local businesses, services and points of interest"
},
{
"name": "brave_video_search",
"description": "Search the web for videos"
}
],
"keywords": [
"brave search",
"web search",
"image search",
"video search"
],
"license": "GPL-3.0-or-later",
"user_config": {
"brave_api_key": {
"type": "string",
"title": "Brave Search API Key",
"description": "Your Brave Search API key. You can get one from https://search.brave.com/settings/api-keys",
"sensitive": true,
"required": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/mikechao/brave-search-mcp.git"
}
}