@toolsdk.ai/registry 1.0.57 → 1.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Awesome MCP Registry
2
2
 
3
- ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-65-blue)
3
+ ![How many MCP Servers in Awesome MCP Registry](https://img.shields.io/badge/MCP_Servers-66-blue)
4
4
  ![awesome-mcp-registry License](https://img.shields.io/badge/LICENSE-MIT-ff69b4)
5
5
 
6
6
 
7
7
  Welcome to the Awesome MCP Registry.
8
8
 
9
- An open, high-quality, well-structured and developer-friendly list of 65+ MCP servers.
9
+ An open, high-quality, well-structured and developer-friendly list of 66+ MCP servers.
10
10
 
11
11
 
12
12
 
@@ -263,6 +263,7 @@ Find and extract data from various sources quickly and efficiently.
263
263
  - [❌ mcp-server-giphy](https://github.com/magarcia/mcp-server-giphy): MCP Server for the Giphy API, enabling AI models to search, retrieve, and utilize GIFs from Giphy (node)
264
264
  - [✅ anilist-mcp](https://github.com/yuna0x0/anilist-mcp): MCP server that interfaces with the AniList API, allowing LLM clients to access and interact with anime, manga, character, staff, and user data from AniList (44 tools) (node)
265
265
  - [✅ @anaisbetts/mcp-youtube](https://github.com/anaisbetts/mcp-youtube): MCP server for fetching YouTube subtitles (1 tools) (node)
266
+ - [✅ brave-search-mcp](https://github.com/mikechao/brave-search-mcp): An MCP Server implementation that integrates the Brave Search API, providing, Web Search, Local Points of Interest Search, Video Search, Image Search and News Search capabilities (5 tools) (node)
266
267
  - [✅ @modelcontextprotocol/server-aws-kb-retrieval](https://github.com/modelcontextprotocol/servers/blob/main/src/aws-kb-retrieval-server): MCP server for AWS Knowledge Base retrieval using Bedrock Agent Runtime (1 tools) (node)
267
268
  - [✅ @kimtaeyoon83/mcp-server-youtube-transcript](https://github.com/kimtaeyoon83/mcp-server-youtube-transcript): This is an MCP server that allows you to directly download transcripts of YouTube videos. (1 tools) (node)
268
269
  - [✅ @mcp-get-community/server-curl](https://github.com/mcp-get/community-servers/blob/main/src/server-curl): MCP server for making HTTP requests using a curl-like interface (1 tools) (node)
@@ -12,6 +12,7 @@ export default [
12
12
  "@modelcontextprotocol/server-slack",
13
13
  "@modelcontextprotocol/server-google-maps",
14
14
  "@modelcontextprotocol/server-gitlab",
15
+ "brave-search-mcp",
15
16
  "tavily-mcp",
16
17
  "@executeautomation/playwright-mcp-server",
17
18
  "hyperbrowser-mcp",
@@ -247,6 +247,7 @@
247
247
  "mcp-server-giphy",
248
248
  "anilist-mcp",
249
249
  "@anaisbetts/mcp-youtube",
250
+ "brave-search-mcp",
250
251
  "@modelcontextprotocol/server-aws-kb-retrieval",
251
252
  "@kimtaeyoon83/mcp-server-youtube-transcript",
252
253
  "@mcp-get-community/server-curl",
@@ -1236,6 +1236,32 @@
1236
1236
  },
1237
1237
  "validated": true
1238
1238
  },
1239
+ "brave-search-mcp": {
1240
+ "path": "search-data-extraction/brave-search-mcp.json",
1241
+ "tools": {
1242
+ "brave_image_search": {
1243
+ "name": "brave_image_search",
1244
+ "description": "A tool for searching the web for images using the Brave Search API."
1245
+ },
1246
+ "brave_web_search": {
1247
+ "name": "brave_web_search",
1248
+ "description": "Performs a web search using the Brave Search API, ideal for general queries, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Maximum 20 results per request "
1249
+ },
1250
+ "brave_local_search": {
1251
+ "name": "brave_local_search",
1252
+ "description": "Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:\n- Business names and addresses\n- Ratings and review counts\n- Phone numbers and opening hours\nUse this when the query implies 'near me' or mentions specific locations. Automatically falls back to web search if no local results are found."
1253
+ },
1254
+ "brave_news_search": {
1255
+ "name": "brave_news_search",
1256
+ "description": "Searches for news articles using the Brave Search API. Use this for recent events, trending topics, or specific news stories. Returns a list of articles with titles, URLs, and descriptions. Maximum 20 results per request."
1257
+ },
1258
+ "brave_video_search": {
1259
+ "name": "brave_video_search",
1260
+ "description": "Searches for videos using the Brave Search API. Use this for video content, tutorials, or any media-related queries. Returns a list of videos with titles, URLs, and descriptions. Maximum 20 results per request."
1261
+ }
1262
+ },
1263
+ "validated": true
1264
+ },
1239
1265
  "@modelcontextprotocol/server-aws-kb-retrieval": {
1240
1266
  "path": "search-data-extraction/modelcontextprotocol-server-aws-kb-retrieval.json",
1241
1267
  "tools": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.57",
3
+ "version": "1.0.58",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "exports": {
6
6
  "./config/*": "./config/*",
@@ -64,6 +64,7 @@
64
64
  "mcp-server-giphy": "latest",
65
65
  "anilist-mcp": "latest",
66
66
  "@anaisbetts/mcp-youtube": "latest",
67
+ "brave-search-mcp": "latest",
67
68
  "@modelcontextprotocol/server-aws-kb-retrieval": "latest",
68
69
  "@kimtaeyoon83/mcp-server-youtube-transcript": "latest",
69
70
  "@mcp-get-community/server-curl": "latest",
@@ -0,0 +1,14 @@
1
+ {
2
+ "type": "mcp-server",
3
+ "packageName": "brave-search-mcp",
4
+ "description": "An MCP Server implementation that integrates the Brave Search API, providing, Web Search, Local Points of Interest Search, Video Search, Image Search and News Search capabilities",
5
+ "url": "https://github.com/mikechao/brave-search-mcp",
6
+ "runtime": "node",
7
+ "license": "MIT",
8
+ "env": {
9
+ "BRAVE_API_KEY": {
10
+ "description": "API key for Brave Search",
11
+ "required": true
12
+ }
13
+ }
14
+ }