mcp-brave-search mcp

v1.1.1 · MCP Tool · search · registry.pascalai.org

Search the web using the Brave Search API with support for web, news, image and video results. Requires a Brave Search API key (free tier available at brave.com/search/api).

bravesearchwebnewsimagesvideobrave-searchapiinternetquery

Input Parameters

ParameterTypeDescription
queryrequired string Search terms or question.
apiKeyoptional string Brave Search API key.
countoptional integer Number of results to return (default: 10, max: 20). Default: 10.
offsetoptional integer Offset for pagination (default: 0). Default: 0.
countryoptional string Country code for results (e.g. US, GB, DE). Default: US. Default: US.
languageoptional string Language code (e.g. en, es, fr). Default: en. Default: en.
searchTypeoptional string Type of search (default: web). One of: web, news, images, videos. Default: web.

Output Fields

FieldTypeDescription
results array[object]
count integer
query string
error string

Examples

Web search

// Input
{
  "query": "Delphi MCP server",
  "apiKey": "your-key",
  "count": 5
}

// Output
{
  "count": 5,
  "results": [
    {
      "title": "...",
      "url": "...",
      "description": "..."
    }
  ]
}

Install & Discovery

Install

ppm install mcp-brave-search

Get JSON Schema

GET /v1/packages/mcp-brave-search/1.1.1/schema

Discover by keyword

GET /v1/mcp/discover?q=brave
Discovery hint: Install with ppm install mcp-brave-search or invoke remotely via POST /v1/invoke/mcp-brave-search on the MCP Service.

PascalAI Usage

uses toolslib;
var Tool := LoadTool('mcp-brave-search');
var R := Tool.Call(JsonObj(['query','PascalAI tutorial','apiKey','your-key','count',5]));
Writeln(R.ToJSON);