Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
BRAVE_API_KEY | Yes | Your Brave Search API key (required for search functionality) | |
REQUEST_TIMEOUT | No | Request timeout in seconds | 10 |
MAX_RESPONSE_SIZE | No | Maximum response size in bytes | 10485760 |
BRAVE_RATE_LIMIT_RPS | No | Brave Search API Rate Limit in requests per second. Free tier: 1, Paid tier: 20, Higher tier: 50 | 1 |
CONTENT_LENGTH_LIMIT | No | Content length limit in characters | 5000 |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_server_info | Get information about this MCP server including version, implementation, and capabilities. Returns: Server information including version, implementation type, and available features |
test_brave_search | Test the Brave Search API connection and configuration. Args: query: Test query to search for (default: "test") |
fetch_url_text | Download all visible text from a URL. Args: url: The URL to fetch text from |
fetch_page_links | Return a list of all links on the page. Args: url: The URL to fetch links from |
brave_search_and_fetch | Search the web using Brave Search and automatically fetch content from the top results. Args: query: The search query max_results: Maximum number of results to fetch content for (default: 3, max: 10) |