mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-21 21:35:15 +02:00
refactor: clean up code formatting and update package version to 0.5.2
This commit is contained in:
32
package-lock.json
generated
32
package-lock.json
generated
@@ -3276,11 +3276,10 @@
|
|||||||
},
|
},
|
||||||
"src/brave-search": {
|
"src/brave-search": {
|
||||||
"name": "@modelcontextprotocol/server-brave-search",
|
"name": "@modelcontextprotocol/server-brave-search",
|
||||||
"version": "0.5.1",
|
"version": "0.5.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@modelcontextprotocol/sdk": "0.5.0",
|
"@modelcontextprotocol/sdk": "0.5.0"
|
||||||
"node-fetch": "^3.3.2"
|
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"mcp-server-brave-search": "dist/index.js"
|
"mcp-server-brave-search": "dist/index.js"
|
||||||
@@ -3301,33 +3300,6 @@
|
|||||||
"undici-types": "~6.19.2"
|
"undici-types": "~6.19.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"src/brave-search/node_modules/data-uri-to-buffer": {
|
|
||||||
"version": "4.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
|
|
||||||
"integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
|
|
||||||
"license": "MIT",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 12"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"src/brave-search/node_modules/node-fetch": {
|
|
||||||
"version": "3.3.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
|
|
||||||
"integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
|
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"data-uri-to-buffer": "^4.0.0",
|
|
||||||
"fetch-blob": "^3.1.4",
|
|
||||||
"formdata-polyfill": "^4.0.10"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
||||||
},
|
|
||||||
"funding": {
|
|
||||||
"type": "opencollective",
|
|
||||||
"url": "https://opencollective.com/node-fetch"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"src/duckduckgo": {
|
"src/duckduckgo": {
|
||||||
"name": "@modelcontextprotocol/server-duckduckgo",
|
"name": "@modelcontextprotocol/server-duckduckgo",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import {
|
|||||||
ListToolsRequestSchema,
|
ListToolsRequestSchema,
|
||||||
Tool,
|
Tool,
|
||||||
} from "@modelcontextprotocol/sdk/types.js";
|
} from "@modelcontextprotocol/sdk/types.js";
|
||||||
import fetch from "node-fetch";
|
|
||||||
|
|
||||||
const WEB_SEARCH_TOOL: Tool = {
|
const WEB_SEARCH_TOOL: Tool = {
|
||||||
name: "brave_web_search",
|
name: "brave_web_search",
|
||||||
@@ -104,7 +103,7 @@ function checkRateLimit() {
|
|||||||
requestCount.lastReset = now;
|
requestCount.lastReset = now;
|
||||||
}
|
}
|
||||||
if (requestCount.second >= RATE_LIMIT.perSecond ||
|
if (requestCount.second >= RATE_LIMIT.perSecond ||
|
||||||
requestCount.month >= RATE_LIMIT.perMonth) {
|
requestCount.month >= RATE_LIMIT.perMonth) {
|
||||||
throw new Error('Rate limit exceeded');
|
throw new Error('Rate limit exceeded');
|
||||||
}
|
}
|
||||||
requestCount.second++;
|
requestCount.second++;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@modelcontextprotocol/server-brave-search",
|
"name": "@modelcontextprotocol/server-brave-search",
|
||||||
"version": "0.5.1",
|
"version": "0.5.2",
|
||||||
"description": "MCP server for Brave Search API integration",
|
"description": "MCP server for Brave Search API integration",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "Anthropic, PBC (https://anthropic.com)",
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
||||||
@@ -19,8 +19,7 @@
|
|||||||
"watch": "tsc --watch"
|
"watch": "tsc --watch"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@modelcontextprotocol/sdk": "0.5.0",
|
"@modelcontextprotocol/sdk": "0.5.0"
|
||||||
"node-fetch": "^3.3.2"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20.10.0",
|
"@types/node": "^20.10.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user