What is the Intercept MCP server?
Give your AI the ability to read the web. Fetches URLs as clean markdown with multi-tier fallback.
How to install Intercept
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
BRAVE_API_KEYsecretBrave Search API key for the search tool (free tier: 2,000 queries/month). Not needed for the fetch tool.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"intercept-mcp": {
"command": "npx",
"args": [
"-y",
"intercept-mcp"
],
"env": {
"BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"intercept-mcp": {
"command": "npx",
"args": [
"-y",
"intercept-mcp"
],
"env": {
"BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"intercept-mcp": {
"command": "npx",
"args": [
"-y",
"intercept-mcp"
],
"env": {
"BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"intercept-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"intercept-mcp"
],
"env": {
"BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>"
}
}
}
}Claude Code
claude mcp add intercept-mcp --env BRAVE_API_KEY=<YOUR_BRAVE_API_KEY> -- npx -y intercept-mcpRelated MCP servers
io.github.bighippoman/license-compliance
Maintained
Scan npm dependencies for license compliance issues. Catch GPL contamination.
0
View repository →TypeScript
MIT
io.github.bighippoman/memoir
Maintained
Structured session journals for AI agents. Persistent memory across sessions.
0
View repository →TypeScript
MIT